From c146fe1d732e3a60871c64984ba8261cf2d70a46 Mon Sep 17 00:00:00 2001 From: Alberto Balbo Date: Sun, 17 Aug 2025 17:20:29 +0200 Subject: [PATCH] Inizializzato progetto --- Ganimede/App.xaml | 9 +++++++++ Ganimede/App.xaml.cs | 14 ++++++++++++++ Ganimede/AssemblyInfo.cs | 10 ++++++++++ Ganimede/Ganimede.csproj | 11 +++++++++++ Ganimede/Ganimede.sln | 25 +++++++++++++++++++++++++ Ganimede/MainWindow.xaml | 12 ++++++++++++ Ganimede/MainWindow.xaml.cs | 24 ++++++++++++++++++++++++ 7 files changed, 105 insertions(+) create mode 100644 Ganimede/App.xaml create mode 100644 Ganimede/App.xaml.cs create mode 100644 Ganimede/AssemblyInfo.cs create mode 100644 Ganimede/Ganimede.csproj create mode 100644 Ganimede/Ganimede.sln create mode 100644 Ganimede/MainWindow.xaml create mode 100644 Ganimede/MainWindow.xaml.cs diff --git a/Ganimede/App.xaml b/Ganimede/App.xaml new file mode 100644 index 0000000..9511e05 --- /dev/null +++ b/Ganimede/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Ganimede/App.xaml.cs b/Ganimede/App.xaml.cs new file mode 100644 index 0000000..84b63a8 --- /dev/null +++ b/Ganimede/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace Ganimede +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/Ganimede/AssemblyInfo.cs b/Ganimede/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/Ganimede/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/Ganimede/Ganimede.csproj b/Ganimede/Ganimede.csproj new file mode 100644 index 0000000..e3e33e3 --- /dev/null +++ b/Ganimede/Ganimede.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + + diff --git a/Ganimede/Ganimede.sln b/Ganimede/Ganimede.sln new file mode 100644 index 0000000..7c58367 --- /dev/null +++ b/Ganimede/Ganimede.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.36408.4 d17.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ganimede", "Ganimede.csproj", "{45294E97-B850-9F43-55B9-852D8D4DBCC2}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {45294E97-B850-9F43-55B9-852D8D4DBCC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {45294E97-B850-9F43-55B9-852D8D4DBCC2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {45294E97-B850-9F43-55B9-852D8D4DBCC2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {45294E97-B850-9F43-55B9-852D8D4DBCC2}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {1D3C2166-A13E-4302-BBE7-A38BA6F65D74} + EndGlobalSection +EndGlobal diff --git a/Ganimede/MainWindow.xaml b/Ganimede/MainWindow.xaml new file mode 100644 index 0000000..5cb4ea1 --- /dev/null +++ b/Ganimede/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/Ganimede/MainWindow.xaml.cs b/Ganimede/MainWindow.xaml.cs new file mode 100644 index 0000000..3187273 --- /dev/null +++ b/Ganimede/MainWindow.xaml.cs @@ -0,0 +1,24 @@ +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 Ganimede +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file