From 46000134f60c0ae3d403efc2111e06c5fd5c8baa Mon Sep 17 00:00:00 2001 From: syneffort Date: Mon, 19 Jun 2023 16:27:10 +0900 Subject: [PATCH] web browser --- PacticeSolution/ClockGadget/MainWindow.xaml | 1 + PacticeSolution/MapFinder/App.xaml | 9 ++++ PacticeSolution/MapFinder/App.xaml.cs | 17 +++++++ PacticeSolution/MapFinder/AssemblyInfo.cs | 10 ++++ PacticeSolution/MapFinder/Data/FoundLocale.cs | 27 ++++++++++ PacticeSolution/MapFinder/MainWindow.xaml | 46 +++++++++++++++++ PacticeSolution/MapFinder/MainWindow.xaml.cs | 50 +++++++++++++++++++ PacticeSolution/MapFinder/MapFinder.csproj | 14 ++++++ PacticeSolution/MapFinder/Utility/KakaoAPI.cs | 50 +++++++++++++++++++ PacticeSolution/PacticeSolution.sln | 6 +++ 10 files changed, 230 insertions(+) create mode 100644 PacticeSolution/MapFinder/App.xaml create mode 100644 PacticeSolution/MapFinder/App.xaml.cs create mode 100644 PacticeSolution/MapFinder/AssemblyInfo.cs create mode 100644 PacticeSolution/MapFinder/Data/FoundLocale.cs create mode 100644 PacticeSolution/MapFinder/MainWindow.xaml create mode 100644 PacticeSolution/MapFinder/MainWindow.xaml.cs create mode 100644 PacticeSolution/MapFinder/MapFinder.csproj create mode 100644 PacticeSolution/MapFinder/Utility/KakaoAPI.cs 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 @@ + + + + + + + + + + + + + + 검색어: + + +