diff --git a/OxyPlotExample/GettingStarted/App.xaml b/OxyPlotExample/GettingStarted/App.xaml deleted file mode 100644 index 210eaf7..0000000 --- a/OxyPlotExample/GettingStarted/App.xaml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - diff --git a/OxyPlotExample/GettingStarted/App.xaml.cs b/OxyPlotExample/GettingStarted/App.xaml.cs deleted file mode 100644 index c2747ec..0000000 --- a/OxyPlotExample/GettingStarted/App.xaml.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Configuration; -using System.Data; -using System.Windows; - -namespace GettingStarted -{ - /// - /// Interaction logic for App.xaml - /// - public partial class App : Application - { - } - -} diff --git a/OxyPlotExample/GettingStarted/AssemblyInfo.cs b/OxyPlotExample/GettingStarted/AssemblyInfo.cs deleted file mode 100644 index b0ec827..0000000 --- a/OxyPlotExample/GettingStarted/AssemblyInfo.cs +++ /dev/null @@ -1,10 +0,0 @@ -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/OxyPlotExample/GettingStarted/GettingStarted.csproj b/OxyPlotExample/GettingStarted/GettingStarted.csproj deleted file mode 100644 index 80096b0..0000000 --- a/OxyPlotExample/GettingStarted/GettingStarted.csproj +++ /dev/null @@ -1,16 +0,0 @@ - - - - WinExe - net6.0-windows - enable - enable - true - - - - - - - - diff --git a/OxyPlotExample/GettingStarted/MainWindow.xaml b/OxyPlotExample/GettingStarted/MainWindow.xaml deleted file mode 100644 index f4d94a1..0000000 --- a/OxyPlotExample/GettingStarted/MainWindow.xaml +++ /dev/null @@ -1,13 +0,0 @@ - - - diff --git a/OxyPlotExample/GettingStarted/MainWindow.xaml.cs b/OxyPlotExample/GettingStarted/MainWindow.xaml.cs deleted file mode 100644 index 1f1a3fc..0000000 --- a/OxyPlotExample/GettingStarted/MainWindow.xaml.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System.Text; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Imaging; -using System.Windows.Navigation; -using System.Windows.Shapes; - -namespace GettingStarted -{ - /// - /// Interaction logic for MainWindow.xaml - /// - public partial class MainWindow : Window - { - public MainWindow() - { - InitializeComponent(); - } - } -} \ No newline at end of file diff --git a/OxyPlotExample/GettingStarted/ViewModels/MainViewModel.cs b/OxyPlotExample/GettingStarted/ViewModels/MainViewModel.cs deleted file mode 100644 index 6596d6c..0000000 --- a/OxyPlotExample/GettingStarted/ViewModels/MainViewModel.cs +++ /dev/null @@ -1,23 +0,0 @@ -using CommunityToolkit.Mvvm.ComponentModel; -using OxyPlot; -using OxyPlot.Series; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace GettingStarted.ViewModels -{ - public partial class MainViewModel : ObservableObject - { - [ObservableProperty] - private PlotModel _myModel; - - public MainViewModel() - { - MyModel = new PlotModel() { Title = "Getting Started" }; - MyModel.Series.Add(new FunctionSeries(Math.Cos, 0, 10, 0.1, "cos(x)")); - } - } -} diff --git a/OxyPlotExample/GettingStarted/Views/MainView.xaml b/OxyPlotExample/GettingStarted/Views/MainView.xaml deleted file mode 100644 index c05b2ae..0000000 --- a/OxyPlotExample/GettingStarted/Views/MainView.xaml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - diff --git a/OxyPlotExample/GettingStarted/Views/MainView.xaml.cs b/OxyPlotExample/GettingStarted/Views/MainView.xaml.cs deleted file mode 100644 index 32d8205..0000000 --- a/OxyPlotExample/GettingStarted/Views/MainView.xaml.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Imaging; -using System.Windows.Navigation; -using System.Windows.Shapes; - -namespace GettingStarted.Views -{ - /// - /// MainView.xaml에 대한 상호 작용 논리 - /// - public partial class MainView : Page - { - public MainView() - { - InitializeComponent(); - } - } -} diff --git a/OxyPlotExample/OxyPlotExample.sln b/OxyPlotExample/OxyPlotExample.sln deleted file mode 100644 index bdeb079..0000000 --- a/OxyPlotExample/OxyPlotExample.sln +++ /dev/null @@ -1,25 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.9.34728.123 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GettingStarted", "GettingStarted\GettingStarted.csproj", "{8319F2C0-883D-484E-9745-CA2379A14C49}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {8319F2C0-883D-484E-9745-CA2379A14C49}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8319F2C0-883D-484E-9745-CA2379A14C49}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8319F2C0-883D-484E-9745-CA2379A14C49}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8319F2C0-883D-484E-9745-CA2379A14C49}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {D0EFDA27-685F-442A-AF95-66086C9F9AF2} - EndGlobalSection -EndGlobal diff --git a/OxyPlotExample/OxyPlotExample/App.xaml b/OxyPlotExample/OxyPlotExample/App.xaml deleted file mode 100644 index d9cb7a0..0000000 --- a/OxyPlotExample/OxyPlotExample/App.xaml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - diff --git a/OxyPlotExample/OxyPlotExample/App.xaml.cs b/OxyPlotExample/OxyPlotExample/App.xaml.cs deleted file mode 100644 index a4a9252..0000000 --- a/OxyPlotExample/OxyPlotExample/App.xaml.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Configuration; -using System.Data; -using System.Windows; - -namespace OxyPlotExample -{ - /// - /// Interaction logic for App.xaml - /// - public partial class App : Application - { - } - -} diff --git a/OxyPlotExample/OxyPlotExample/AssemblyInfo.cs b/OxyPlotExample/OxyPlotExample/AssemblyInfo.cs deleted file mode 100644 index b0ec827..0000000 --- a/OxyPlotExample/OxyPlotExample/AssemblyInfo.cs +++ /dev/null @@ -1,10 +0,0 @@ -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/OxyPlotExample/OxyPlotExample/MainWindow.xaml b/OxyPlotExample/OxyPlotExample/MainWindow.xaml deleted file mode 100644 index f237fae..0000000 --- a/OxyPlotExample/OxyPlotExample/MainWindow.xaml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - diff --git a/OxyPlotExample/OxyPlotExample/MainWindow.xaml.cs b/OxyPlotExample/OxyPlotExample/MainWindow.xaml.cs deleted file mode 100644 index a38e180..0000000 --- a/OxyPlotExample/OxyPlotExample/MainWindow.xaml.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System.Text; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Imaging; -using System.Windows.Navigation; -using System.Windows.Shapes; - -namespace OxyPlotExample -{ - /// - /// Interaction logic for MainWindow.xaml - /// - public partial class MainWindow : Window - { - public MainWindow() - { - InitializeComponent(); - } - } -} \ No newline at end of file diff --git a/OxyPlotExample/OxyPlotExample/OxyPlotExample.csproj b/OxyPlotExample/OxyPlotExample/OxyPlotExample.csproj deleted file mode 100644 index 18b9a12..0000000 --- a/OxyPlotExample/OxyPlotExample/OxyPlotExample.csproj +++ /dev/null @@ -1,11 +0,0 @@ - - - - WinExe - net6.0-windows - enable - enable - true - - -