diff --git a/PacticeSolution/ClockGadget/MainWindow.xaml b/PacticeSolution/ClockGadget/MainWindow.xaml index e52b989..0b990d6 100644 --- a/PacticeSolution/ClockGadget/MainWindow.xaml +++ b/PacticeSolution/ClockGadget/MainWindow.xaml @@ -21,6 +21,7 @@ + + + + diff --git a/PacticeSolution/MapFinder/App.xaml.cs b/PacticeSolution/MapFinder/App.xaml.cs new file mode 100644 index 0000000..57358be --- /dev/null +++ b/PacticeSolution/MapFinder/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace MapFinder +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/PacticeSolution/MapFinder/AssemblyInfo.cs b/PacticeSolution/MapFinder/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/PacticeSolution/MapFinder/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/PacticeSolution/MapFinder/Data/FoundLocale.cs b/PacticeSolution/MapFinder/Data/FoundLocale.cs new file mode 100644 index 0000000..717d4f1 --- /dev/null +++ b/PacticeSolution/MapFinder/Data/FoundLocale.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace MapFinder.Data +{ + class FoundLocale + { + internal string Name { get; private set; } + internal double Lng { get; private set; } + internal double Lat { get; private set; } + + public FoundLocale(string name, double lng, double lat) + { + this.Name = name; + this.Lng = lng; + this.Lat = lat; + } + + public override string ToString() + { + return this.Name; + } + } +} diff --git a/PacticeSolution/MapFinder/MainWindow.xaml b/PacticeSolution/MapFinder/MainWindow.xaml new file mode 100644 index 0000000..16d3778 --- /dev/null +++ b/PacticeSolution/MapFinder/MainWindow.xaml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + 검색어: + + +