diff --git a/20241107/WpfApp1/.vs/ProjectEvaluation/wpfapp1.metadata.v7.bin b/20241107/WpfApp1/.vs/ProjectEvaluation/wpfapp1.metadata.v7.bin new file mode 100644 index 0000000..5258088 Binary files /dev/null and b/20241107/WpfApp1/.vs/ProjectEvaluation/wpfapp1.metadata.v7.bin differ diff --git a/20241107/WpfApp1/.vs/ProjectEvaluation/wpfapp1.projects.v7.bin b/20241107/WpfApp1/.vs/ProjectEvaluation/wpfapp1.projects.v7.bin new file mode 100644 index 0000000..07e8b4e Binary files /dev/null and b/20241107/WpfApp1/.vs/ProjectEvaluation/wpfapp1.projects.v7.bin differ diff --git a/20241107/WpfApp1/.vs/WpfApp1/DesignTimeBuild/.dtbcache.v2 b/20241107/WpfApp1/.vs/WpfApp1/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..b9e0194 Binary files /dev/null and b/20241107/WpfApp1/.vs/WpfApp1/DesignTimeBuild/.dtbcache.v2 differ diff --git a/20241107/WpfApp1/.vs/WpfApp1/FileContentIndex/9053e9af-11ca-4726-b546-58aa91953106.vsidx b/20241107/WpfApp1/.vs/WpfApp1/FileContentIndex/9053e9af-11ca-4726-b546-58aa91953106.vsidx new file mode 100644 index 0000000..030b80c Binary files /dev/null and b/20241107/WpfApp1/.vs/WpfApp1/FileContentIndex/9053e9af-11ca-4726-b546-58aa91953106.vsidx differ diff --git a/20241107/WpfApp1/.vs/WpfApp1/v17/.futdcache.v2 b/20241107/WpfApp1/.vs/WpfApp1/v17/.futdcache.v2 new file mode 100644 index 0000000..dbc1c45 Binary files /dev/null and b/20241107/WpfApp1/.vs/WpfApp1/v17/.futdcache.v2 differ diff --git a/20241107/WpfApp1/.vs/WpfApp1/v17/.suo b/20241107/WpfApp1/.vs/WpfApp1/v17/.suo new file mode 100644 index 0000000..3961f74 Binary files /dev/null and b/20241107/WpfApp1/.vs/WpfApp1/v17/.suo differ diff --git a/20241107/WpfApp1/App.xaml b/20241107/WpfApp1/App.xaml new file mode 100644 index 0000000..2e70522 --- /dev/null +++ b/20241107/WpfApp1/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/20241107/WpfApp1/App.xaml.cs b/20241107/WpfApp1/App.xaml.cs new file mode 100644 index 0000000..4cd4cdb --- /dev/null +++ b/20241107/WpfApp1/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace WpfApp1 +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/20241107/WpfApp1/AssemblyInfo.cs b/20241107/WpfApp1/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/20241107/WpfApp1/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/20241107/WpfApp1/MainWindow.xaml b/20241107/WpfApp1/MainWindow.xaml new file mode 100644 index 0000000..84332e1 --- /dev/null +++ b/20241107/WpfApp1/MainWindow.xaml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + Red: + + + + + + + + Green: + + + + + + + + Blue: + + + + + + + + + + + + + + + diff --git a/20241107/WpfApp1/MainWindow.xaml.cs b/20241107/WpfApp1/MainWindow.xaml.cs new file mode 100644 index 0000000..8e4fa89 --- /dev/null +++ b/20241107/WpfApp1/MainWindow.xaml.cs @@ -0,0 +1,53 @@ +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 WpfApp1 +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public static int redvalue = 0, greenvalue = 0, bluevalue = 0; + public MainWindow() + { + InitializeComponent(); + } + + private void redSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs e) + { + redvalue = Convert.ToInt32(redSlider.Value); + SolidColorBrush solidColorBrush = new SolidColorBrush(); + solidColorBrush.Color = Color.FromArgb(255, (byte)redvalue, (byte)greenvalue, (byte)bluevalue); + myrectangle.Fill = solidColorBrush; + } + + private void greenSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs e) + { + greenvalue = Convert.ToInt32(greenSlider.Value); + SolidColorBrush solidColorBrush = new SolidColorBrush(); + solidColorBrush.Color = Color.FromRgb((byte)redvalue, (byte)greenvalue, (byte)bluevalue); + myrectangle.Fill = solidColorBrush; + } + + private void blueSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs e) + { + bluevalue = Convert.ToInt32(blueSlider.Value); + + + SolidColorBrush solidColorBrush = new SolidColorBrush(); + solidColorBrush.Color = Color.FromArgb(255, (byte)redvalue, (byte)greenvalue, (byte)bluevalue); + myrectangle.Fill = solidColorBrush; + + } + + } +} \ No newline at end of file diff --git a/20241107/WpfApp1/WpfApp1.csproj b/20241107/WpfApp1/WpfApp1.csproj new file mode 100644 index 0000000..e3e33e3 --- /dev/null +++ b/20241107/WpfApp1/WpfApp1.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + + diff --git a/20241107/WpfApp1/WpfApp1.csproj.user b/20241107/WpfApp1/WpfApp1.csproj.user new file mode 100644 index 0000000..644b0a6 --- /dev/null +++ b/20241107/WpfApp1/WpfApp1.csproj.user @@ -0,0 +1,14 @@ + + + + + + Designer + + + + + Designer + + + \ No newline at end of file diff --git a/20241107/WpfApp1/WpfApp1.sln b/20241107/WpfApp1/WpfApp1.sln new file mode 100644 index 0000000..2ce16b2 --- /dev/null +++ b/20241107/WpfApp1/WpfApp1.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34408.163 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfApp1", "WpfApp1.csproj", "{41C0844C-4C90-406E-A55D-2D3738DA3EEB}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {41C0844C-4C90-406E-A55D-2D3738DA3EEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {41C0844C-4C90-406E-A55D-2D3738DA3EEB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {41C0844C-4C90-406E-A55D-2D3738DA3EEB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {41C0844C-4C90-406E-A55D-2D3738DA3EEB}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {A9F4C0D4-E07C-451D-AFBB-7EEFDE1DE2B0} + EndGlobalSection +EndGlobal diff --git a/20241107/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.deps.json b/20241107/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.deps.json new file mode 100644 index 0000000..bd81742 --- /dev/null +++ b/20241107/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "WpfApp1/1.0.0": { + "runtime": { + "WpfApp1.dll": {} + } + } + } + }, + "libraries": { + "WpfApp1/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/20241107/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.dll b/20241107/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.dll new file mode 100644 index 0000000..780510f Binary files /dev/null and b/20241107/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.dll differ diff --git a/20241107/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.exe b/20241107/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.exe new file mode 100644 index 0000000..cdb4f75 Binary files /dev/null and b/20241107/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.exe differ diff --git a/20241107/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.pdb b/20241107/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.pdb new file mode 100644 index 0000000..29b4ed4 Binary files /dev/null and b/20241107/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.pdb differ diff --git a/20241107/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.runtimeconfig.json b/20241107/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.runtimeconfig.json new file mode 100644 index 0000000..1dc0145 --- /dev/null +++ b/20241107/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.runtimeconfig.json @@ -0,0 +1,18 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true + } + } +} \ No newline at end of file diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/App.g.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/App.g.cs new file mode 100644 index 0000000..0cdfe15 --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/App.g.cs @@ -0,0 +1,71 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DCC59813AB95D23CF72F07367E2D9621042BF6D9" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp1; + + +namespace WpfApp1 { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public void InitializeComponent() { + + #line 5 "..\..\..\App.xaml" + this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); + + #line default + #line hidden + } + + /// + /// Application Entry Point. + /// + [System.STAThreadAttribute()] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public static void Main() { + WpfApp1.App app = new WpfApp1.App(); + app.InitializeComponent(); + app.Run(); + } + } +} + diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/App.g.i.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/App.g.i.cs new file mode 100644 index 0000000..0cdfe15 --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/App.g.i.cs @@ -0,0 +1,71 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DCC59813AB95D23CF72F07367E2D9621042BF6D9" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp1; + + +namespace WpfApp1 { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public void InitializeComponent() { + + #line 5 "..\..\..\App.xaml" + this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); + + #line default + #line hidden + } + + /// + /// Application Entry Point. + /// + [System.STAThreadAttribute()] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public static void Main() { + WpfApp1.App app = new WpfApp1.App(); + app.InitializeComponent(); + app.Run(); + } + } +} + diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/MainWindow.baml b/20241107/WpfApp1/obj/Debug/net8.0-windows/MainWindow.baml new file mode 100644 index 0000000..143efd1 Binary files /dev/null and b/20241107/WpfApp1/obj/Debug/net8.0-windows/MainWindow.baml differ diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/MainWindow.g.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/MainWindow.g.cs new file mode 100644 index 0000000..309c688 --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/MainWindow.g.cs @@ -0,0 +1,141 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "CDFAC869C7AEDA2ADB864BDF678F4235012D887A" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp1; + + +namespace WpfApp1 { + + + /// + /// MainWindow + /// + public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + + #line 23 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Slider redSlider; + + #line default + #line hidden + + + #line 32 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Slider greenSlider; + + #line default + #line hidden + + + #line 39 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Slider blueSlider; + + #line default + #line hidden + + + #line 41 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Shapes.Rectangle myrectangle; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/WpfApp1;component/mainwindow.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\MainWindow.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] + void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { + switch (connectionId) + { + case 1: + this.redSlider = ((System.Windows.Controls.Slider)(target)); + + #line 23 "..\..\..\MainWindow.xaml" + this.redSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.redSlider_ValueChanged); + + #line default + #line hidden + return; + case 2: + this.greenSlider = ((System.Windows.Controls.Slider)(target)); + + #line 32 "..\..\..\MainWindow.xaml" + this.greenSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.greenSlider_ValueChanged); + + #line default + #line hidden + return; + case 3: + this.blueSlider = ((System.Windows.Controls.Slider)(target)); + + #line 39 "..\..\..\MainWindow.xaml" + this.blueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.blueSlider_ValueChanged); + + #line default + #line hidden + return; + case 4: + this.myrectangle = ((System.Windows.Shapes.Rectangle)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/MainWindow.g.i.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/MainWindow.g.i.cs new file mode 100644 index 0000000..309c688 --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/MainWindow.g.i.cs @@ -0,0 +1,141 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "CDFAC869C7AEDA2ADB864BDF678F4235012D887A" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp1; + + +namespace WpfApp1 { + + + /// + /// MainWindow + /// + public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + + #line 23 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Slider redSlider; + + #line default + #line hidden + + + #line 32 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Slider greenSlider; + + #line default + #line hidden + + + #line 39 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Slider blueSlider; + + #line default + #line hidden + + + #line 41 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Shapes.Rectangle myrectangle; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/WpfApp1;component/mainwindow.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\MainWindow.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] + void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { + switch (connectionId) + { + case 1: + this.redSlider = ((System.Windows.Controls.Slider)(target)); + + #line 23 "..\..\..\MainWindow.xaml" + this.redSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.redSlider_ValueChanged); + + #line default + #line hidden + return; + case 2: + this.greenSlider = ((System.Windows.Controls.Slider)(target)); + + #line 32 "..\..\..\MainWindow.xaml" + this.greenSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.greenSlider_ValueChanged); + + #line default + #line hidden + return; + case 3: + this.blueSlider = ((System.Windows.Controls.Slider)(target)); + + #line 39 "..\..\..\MainWindow.xaml" + this.blueSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler(this.blueSlider_ValueChanged); + + #line default + #line hidden + return; + case 4: + this.myrectangle = ((System.Windows.Shapes.Rectangle)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.AssemblyInfo.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.AssemblyInfo.cs new file mode 100644 index 0000000..2978cab --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.AssemblyInfoInputs.cache b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.AssemblyInfoInputs.cache new file mode 100644 index 0000000..dd2847a --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3f09e78c222cdbc605394dfac6137b11b562360b18633609f70e3f87f83a3b90 diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.GeneratedMSBuildEditorConfig.editorconfig b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5ffcefd --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp1 +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.GlobalUsings.g.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.assets.cache b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.assets.cache new file mode 100644 index 0000000..2e563c7 Binary files /dev/null and b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.assets.cache differ diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.csproj.BuildWithSkipAnalyzers b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.csproj.CoreCompileInputs.cache b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4471b10 --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +679c053c2b5481700956174e80219940d2c9f9c67e7e87d61cd050a2a02b7a15 diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.csproj.FileListAbsolute.txt b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..44296ed --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.csproj.FileListAbsolute.txt @@ -0,0 +1,20 @@ +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\App.g.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\WpfApp1_MarkupCompile.cache +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\bin\Debug\net8.0-windows\WpfApp1.exe +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\bin\Debug\net8.0-windows\WpfApp1.deps.json +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\bin\Debug\net8.0-windows\WpfApp1.runtimeconfig.json +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\bin\Debug\net8.0-windows\WpfApp1.dll +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\bin\Debug\net8.0-windows\WpfApp1.pdb +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\MainWindow.g.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\WpfApp1_MarkupCompile.lref +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\MainWindow.baml +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\WpfApp1.g.resources +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\WpfApp1.GeneratedMSBuildEditorConfig.editorconfig +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\WpfApp1.AssemblyInfoInputs.cache +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\WpfApp1.AssemblyInfo.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\WpfApp1.csproj.CoreCompileInputs.cache +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\WpfApp1.dll +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\refint\WpfApp1.dll +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\WpfApp1.pdb +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\WpfApp1.genruntimeconfig.cache +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\ref\WpfApp1.dll diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.designer.deps.json b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.designer.deps.json new file mode 100644 index 0000000..8599efd --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.designer.runtimeconfig.json b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.designer.runtimeconfig.json new file mode 100644 index 0000000..d68ec81 --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.designer.runtimeconfig.json @@ -0,0 +1,24 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "8.0.0" + } + ], + "additionalProbingPaths": [ + "C:\\Users\\Marci\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\Marci\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true, + "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true + } + } +} \ No newline at end of file diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.dll b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.dll new file mode 100644 index 0000000..780510f Binary files /dev/null and b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.dll differ diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.g.resources b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.g.resources new file mode 100644 index 0000000..f92bd1a Binary files /dev/null and b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.g.resources differ diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.genruntimeconfig.cache b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.genruntimeconfig.cache new file mode 100644 index 0000000..0543b65 --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.genruntimeconfig.cache @@ -0,0 +1 @@ +d489460bf3176f500d7255d9f40730ff1505d9d3eff56649e721ab4fcc38398a diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.pdb b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.pdb new file mode 100644 index 0000000..29b4ed4 Binary files /dev/null and b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.pdb differ diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.AssemblyInfo.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..2978cab --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.AssemblyInfoInputs.cache b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..dd2847a --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3f09e78c222cdbc605394dfac6137b11b562360b18633609f70e3f87f83a3b90 diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7e0e12a --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp1_5qppkbjp_wpftmp +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.GlobalUsings.g.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.assets.cache b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.assets.cache new file mode 100644 index 0000000..9e9b2bc Binary files /dev/null and b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.assets.cache differ diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.csproj.BuildWithSkipAnalyzers b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_5qppkbjp_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_MarkupCompile.cache b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_MarkupCompile.cache new file mode 100644 index 0000000..6654e61 --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_MarkupCompile.cache @@ -0,0 +1,20 @@ +WpfApp1 + + +winexe +C# +.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\obj\Debug\net8.0-windows\ +WpfApp1 +none +false +TRACE;DEBUG;NET;NET8_0;NETCOREAPP +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\App.xaml +11407045341 + +4-1487985224 +198-294894759 +MainWindow.xaml; + +False + diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_MarkupCompile.lref b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_MarkupCompile.lref new file mode 100644 index 0000000..7bbdb35 --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_MarkupCompile.lref @@ -0,0 +1,4 @@ + + +FE:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\MainWindow.xaml;; + diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.AssemblyInfo.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..2978cab --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.AssemblyInfoInputs.cache b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..dd2847a --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3f09e78c222cdbc605394dfac6137b11b562360b18633609f70e3f87f83a3b90 diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2f1084b --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp1_f0dak2p5_wpftmp +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.GlobalUsings.g.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.assets.cache b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.assets.cache new file mode 100644 index 0000000..f6a7335 Binary files /dev/null and b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.assets.cache differ diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.csproj.BuildWithSkipAnalyzers b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_f0dak2p5_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.AssemblyInfo.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..2978cab --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.AssemblyInfoInputs.cache b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..dd2847a --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3f09e78c222cdbc605394dfac6137b11b562360b18633609f70e3f87f83a3b90 diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3f56f9d --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp1_fkoarjfr_wpftmp +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.GlobalUsings.g.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.assets.cache b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.assets.cache new file mode 100644 index 0000000..6fb0d93 Binary files /dev/null and b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.assets.cache differ diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.csproj.BuildWithSkipAnalyzers b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_fkoarjfr_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.AssemblyInfo.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..2978cab --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.AssemblyInfoInputs.cache b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..dd2847a --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3f09e78c222cdbc605394dfac6137b11b562360b18633609f70e3f87f83a3b90 diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3052d83 --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp1_r1jsncr2_wpftmp +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.GlobalUsings.g.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.assets.cache b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.assets.cache new file mode 100644 index 0000000..9691dda Binary files /dev/null and b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.assets.cache differ diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.csproj.BuildWithSkipAnalyzers b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r1jsncr2_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.AssemblyInfo.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..2978cab --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.AssemblyInfoInputs.cache b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..dd2847a --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3f09e78c222cdbc605394dfac6137b11b562360b18633609f70e3f87f83a3b90 diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..cc3fcec --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp1_r51vg2ld_wpftmp +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.GlobalUsings.g.cs b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.assets.cache b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.assets.cache new file mode 100644 index 0000000..a6d304e Binary files /dev/null and b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.assets.cache differ diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.csproj.BuildWithSkipAnalyzers b/20241107/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_r51vg2ld_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/apphost.exe b/20241107/WpfApp1/obj/Debug/net8.0-windows/apphost.exe new file mode 100644 index 0000000..cdb4f75 Binary files /dev/null and b/20241107/WpfApp1/obj/Debug/net8.0-windows/apphost.exe differ diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/ref/WpfApp1.dll b/20241107/WpfApp1/obj/Debug/net8.0-windows/ref/WpfApp1.dll new file mode 100644 index 0000000..9183815 Binary files /dev/null and b/20241107/WpfApp1/obj/Debug/net8.0-windows/ref/WpfApp1.dll differ diff --git a/20241107/WpfApp1/obj/Debug/net8.0-windows/refint/WpfApp1.dll b/20241107/WpfApp1/obj/Debug/net8.0-windows/refint/WpfApp1.dll new file mode 100644 index 0000000..9183815 Binary files /dev/null and b/20241107/WpfApp1/obj/Debug/net8.0-windows/refint/WpfApp1.dll differ diff --git a/20241107/WpfApp1/obj/WpfApp1.csproj.nuget.dgspec.json b/20241107/WpfApp1/obj/WpfApp1.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e46e372 --- /dev/null +++ b/20241107/WpfApp1/obj/WpfApp1.csproj.nuget.dgspec.json @@ -0,0 +1,70 @@ +{ + "format": 1, + "restore": { + "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp1\\WpfApp1.csproj": {} + }, + "projects": { + "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp1\\WpfApp1.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp1\\WpfApp1.csproj", + "projectName": "WpfApp1", + "projectPath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp1\\WpfApp1.csproj", + "packagesPath": "C:\\Users\\Marci\\.nuget\\packages\\", + "outputPath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp1\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Marci\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/20241107/WpfApp1/obj/WpfApp1.csproj.nuget.g.props b/20241107/WpfApp1/obj/WpfApp1.csproj.nuget.g.props new file mode 100644 index 0000000..e68eadd --- /dev/null +++ b/20241107/WpfApp1/obj/WpfApp1.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Marci\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.8.0 + + + + + + \ No newline at end of file diff --git a/20241107/WpfApp1/obj/WpfApp1.csproj.nuget.g.targets b/20241107/WpfApp1/obj/WpfApp1.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/20241107/WpfApp1/obj/WpfApp1.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/20241107/WpfApp1/obj/project.assets.json b/20241107/WpfApp1/obj/project.assets.json new file mode 100644 index 0000000..96174ba --- /dev/null +++ b/20241107/WpfApp1/obj/project.assets.json @@ -0,0 +1,76 @@ +{ + "version": 3, + "targets": { + "net8.0-windows7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0-windows7.0": [] + }, + "packageFolders": { + "C:\\Users\\Marci\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp1\\WpfApp1.csproj", + "projectName": "WpfApp1", + "projectPath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp1\\WpfApp1.csproj", + "packagesPath": "C:\\Users\\Marci\\.nuget\\packages\\", + "outputPath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp1\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Marci\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/20241107/WpfApp1/obj/project.nuget.cache b/20241107/WpfApp1/obj/project.nuget.cache new file mode 100644 index 0000000..1069559 --- /dev/null +++ b/20241107/WpfApp1/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "PMoBjRJKY2FoHMbbNCms79nvpx1JWcup1t2y+aowpc3gpGIAflqJuhDjS15i/lRBg3EA6GLE5AfQwD8BtKabMw==", + "success": true, + "projectFilePath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp1\\WpfApp1.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/20241107/WpfApp2/.vs/ProjectEvaluation/wpfapp2.metadata.v7.bin b/20241107/WpfApp2/.vs/ProjectEvaluation/wpfapp2.metadata.v7.bin new file mode 100644 index 0000000..c52f06b Binary files /dev/null and b/20241107/WpfApp2/.vs/ProjectEvaluation/wpfapp2.metadata.v7.bin differ diff --git a/20241107/WpfApp2/.vs/ProjectEvaluation/wpfapp2.projects.v7.bin b/20241107/WpfApp2/.vs/ProjectEvaluation/wpfapp2.projects.v7.bin new file mode 100644 index 0000000..40ce3e6 Binary files /dev/null and b/20241107/WpfApp2/.vs/ProjectEvaluation/wpfapp2.projects.v7.bin differ diff --git a/20241107/WpfApp2/.vs/WpfApp2/DesignTimeBuild/.dtbcache.v2 b/20241107/WpfApp2/.vs/WpfApp2/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..be9c880 Binary files /dev/null and b/20241107/WpfApp2/.vs/WpfApp2/DesignTimeBuild/.dtbcache.v2 differ diff --git a/20241107/WpfApp2/.vs/WpfApp2/FileContentIndex/2c8c9587-2eb1-49e6-b519-e47a16c73126.vsidx b/20241107/WpfApp2/.vs/WpfApp2/FileContentIndex/2c8c9587-2eb1-49e6-b519-e47a16c73126.vsidx new file mode 100644 index 0000000..9171ffc Binary files /dev/null and b/20241107/WpfApp2/.vs/WpfApp2/FileContentIndex/2c8c9587-2eb1-49e6-b519-e47a16c73126.vsidx differ diff --git a/20241107/WpfApp2/.vs/WpfApp2/FileContentIndex/c1f115e8-6d58-4c1b-9dab-84e95ecd6d71.vsidx b/20241107/WpfApp2/.vs/WpfApp2/FileContentIndex/c1f115e8-6d58-4c1b-9dab-84e95ecd6d71.vsidx new file mode 100644 index 0000000..6e1561f Binary files /dev/null and b/20241107/WpfApp2/.vs/WpfApp2/FileContentIndex/c1f115e8-6d58-4c1b-9dab-84e95ecd6d71.vsidx differ diff --git a/20241107/WpfApp2/.vs/WpfApp2/v17/.futdcache.v2 b/20241107/WpfApp2/.vs/WpfApp2/v17/.futdcache.v2 new file mode 100644 index 0000000..4d2d19d Binary files /dev/null and b/20241107/WpfApp2/.vs/WpfApp2/v17/.futdcache.v2 differ diff --git a/20241107/WpfApp2/.vs/WpfApp2/v17/.suo b/20241107/WpfApp2/.vs/WpfApp2/v17/.suo new file mode 100644 index 0000000..00afad7 Binary files /dev/null and b/20241107/WpfApp2/.vs/WpfApp2/v17/.suo differ diff --git a/20241107/WpfApp2/App.xaml b/20241107/WpfApp2/App.xaml new file mode 100644 index 0000000..23aeb8e --- /dev/null +++ b/20241107/WpfApp2/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/20241107/WpfApp2/App.xaml.cs b/20241107/WpfApp2/App.xaml.cs new file mode 100644 index 0000000..3345e6f --- /dev/null +++ b/20241107/WpfApp2/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace WpfApp2 +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/20241107/WpfApp2/AssemblyInfo.cs b/20241107/WpfApp2/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/20241107/WpfApp2/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/20241107/WpfApp2/MainWindow.xaml b/20241107/WpfApp2/MainWindow.xaml new file mode 100644 index 0000000..c20789c --- /dev/null +++ b/20241107/WpfApp2/MainWindow.xaml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/20241107/WpfApp2/MainWindow.xaml.cs b/20241107/WpfApp2/MainWindow.xaml.cs new file mode 100644 index 0000000..9486b82 --- /dev/null +++ b/20241107/WpfApp2/MainWindow.xaml.cs @@ -0,0 +1,25 @@ +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 WpfApp2 +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + + } +} \ No newline at end of file diff --git a/20241107/WpfApp2/View/UserControls/MenuBar.xaml b/20241107/WpfApp2/View/UserControls/MenuBar.xaml new file mode 100644 index 0000000..fd87c24 --- /dev/null +++ b/20241107/WpfApp2/View/UserControls/MenuBar.xaml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + diff --git a/20241107/WpfApp2/View/UserControls/MenuBar.xaml.cs b/20241107/WpfApp2/View/UserControls/MenuBar.xaml.cs new file mode 100644 index 0000000..5d6c26c --- /dev/null +++ b/20241107/WpfApp2/View/UserControls/MenuBar.xaml.cs @@ -0,0 +1,28 @@ +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 WpfApp2.View.UserControls +{ + /// + /// Interaction logic for MenuBar.xaml + /// + public partial class MenuBar : UserControl + { + public MenuBar() + { + InitializeComponent(); + } + } +} diff --git a/20241107/WpfApp2/WpfApp2.csproj b/20241107/WpfApp2/WpfApp2.csproj new file mode 100644 index 0000000..e3e33e3 --- /dev/null +++ b/20241107/WpfApp2/WpfApp2.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + + diff --git a/20241107/WpfApp2/WpfApp2.csproj.user b/20241107/WpfApp2/WpfApp2.csproj.user new file mode 100644 index 0000000..14213fc --- /dev/null +++ b/20241107/WpfApp2/WpfApp2.csproj.user @@ -0,0 +1,22 @@ + + + + + + Designer + + + + + Code + + + + + Designer + + + Designer + + + \ No newline at end of file diff --git a/20241107/WpfApp2/WpfApp2.sln b/20241107/WpfApp2/WpfApp2.sln new file mode 100644 index 0000000..731250a --- /dev/null +++ b/20241107/WpfApp2/WpfApp2.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34408.163 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfApp2", "WpfApp2.csproj", "{2F3B3D2F-0DEA-4CAE-8844-DFCA7EB147D1}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2F3B3D2F-0DEA-4CAE-8844-DFCA7EB147D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2F3B3D2F-0DEA-4CAE-8844-DFCA7EB147D1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2F3B3D2F-0DEA-4CAE-8844-DFCA7EB147D1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2F3B3D2F-0DEA-4CAE-8844-DFCA7EB147D1}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {8DC59391-FEB9-46F5-B446-EDE52D5EC4A7} + EndGlobalSection +EndGlobal diff --git a/20241107/WpfApp2/bin/Debug/net8.0-windows/WpfApp2.deps.json b/20241107/WpfApp2/bin/Debug/net8.0-windows/WpfApp2.deps.json new file mode 100644 index 0000000..d3e2712 --- /dev/null +++ b/20241107/WpfApp2/bin/Debug/net8.0-windows/WpfApp2.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "WpfApp2/1.0.0": { + "runtime": { + "WpfApp2.dll": {} + } + } + } + }, + "libraries": { + "WpfApp2/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/20241107/WpfApp2/bin/Debug/net8.0-windows/WpfApp2.dll b/20241107/WpfApp2/bin/Debug/net8.0-windows/WpfApp2.dll new file mode 100644 index 0000000..65c9cef Binary files /dev/null and b/20241107/WpfApp2/bin/Debug/net8.0-windows/WpfApp2.dll differ diff --git a/20241107/WpfApp2/bin/Debug/net8.0-windows/WpfApp2.exe b/20241107/WpfApp2/bin/Debug/net8.0-windows/WpfApp2.exe new file mode 100644 index 0000000..a9ef953 Binary files /dev/null and b/20241107/WpfApp2/bin/Debug/net8.0-windows/WpfApp2.exe differ diff --git a/20241107/WpfApp2/bin/Debug/net8.0-windows/WpfApp2.pdb b/20241107/WpfApp2/bin/Debug/net8.0-windows/WpfApp2.pdb new file mode 100644 index 0000000..8e92ee5 Binary files /dev/null and b/20241107/WpfApp2/bin/Debug/net8.0-windows/WpfApp2.pdb differ diff --git a/20241107/WpfApp2/bin/Debug/net8.0-windows/WpfApp2.runtimeconfig.json b/20241107/WpfApp2/bin/Debug/net8.0-windows/WpfApp2.runtimeconfig.json new file mode 100644 index 0000000..1dc0145 --- /dev/null +++ b/20241107/WpfApp2/bin/Debug/net8.0-windows/WpfApp2.runtimeconfig.json @@ -0,0 +1,18 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true + } + } +} \ No newline at end of file diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/App.g.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/App.g.cs new file mode 100644 index 0000000..3548c6b --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/App.g.cs @@ -0,0 +1,71 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "542E7E46DDE92486838196A7783AE34DE56BC715" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp2; + + +namespace WpfApp2 { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public void InitializeComponent() { + + #line 5 "..\..\..\App.xaml" + this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); + + #line default + #line hidden + } + + /// + /// Application Entry Point. + /// + [System.STAThreadAttribute()] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public static void Main() { + WpfApp2.App app = new WpfApp2.App(); + app.InitializeComponent(); + app.Run(); + } + } +} + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/App.g.i.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/App.g.i.cs new file mode 100644 index 0000000..3548c6b --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/App.g.i.cs @@ -0,0 +1,71 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "542E7E46DDE92486838196A7783AE34DE56BC715" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp2; + + +namespace WpfApp2 { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public void InitializeComponent() { + + #line 5 "..\..\..\App.xaml" + this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); + + #line default + #line hidden + } + + /// + /// Application Entry Point. + /// + [System.STAThreadAttribute()] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public static void Main() { + WpfApp2.App app = new WpfApp2.App(); + app.InitializeComponent(); + app.Run(); + } + } +} + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/GeneratedInternalTypeHelper.g.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/GeneratedInternalTypeHelper.g.cs new file mode 100644 index 0000000..648e1d4 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/GeneratedInternalTypeHelper.g.cs @@ -0,0 +1,62 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace XamlGeneratedNamespace { + + + /// + /// GeneratedInternalTypeHelper + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { + + /// + /// CreateInstance + /// + protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) { + return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) + | (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture); + } + + /// + /// GetPropertyValue + /// + protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) { + return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture); + } + + /// + /// SetPropertyValue + /// + protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) { + propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture); + } + + /// + /// CreateDelegate + /// + protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) { + return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod + | (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] { + delegateType, + handler}, null))); + } + + /// + /// AddEventHandler + /// + protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) { + eventInfo.AddEventHandler(target, handler); + } + } +} + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/GeneratedInternalTypeHelper.g.i.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/GeneratedInternalTypeHelper.g.i.cs new file mode 100644 index 0000000..648e1d4 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/GeneratedInternalTypeHelper.g.i.cs @@ -0,0 +1,62 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace XamlGeneratedNamespace { + + + /// + /// GeneratedInternalTypeHelper + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { + + /// + /// CreateInstance + /// + protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) { + return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) + | (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture); + } + + /// + /// GetPropertyValue + /// + protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) { + return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture); + } + + /// + /// SetPropertyValue + /// + protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) { + propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture); + } + + /// + /// CreateDelegate + /// + protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) { + return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod + | (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] { + delegateType, + handler}, null))); + } + + /// + /// AddEventHandler + /// + protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) { + eventInfo.AddEventHandler(target, handler); + } + } +} + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/MainWindow.baml b/20241107/WpfApp2/obj/Debug/net8.0-windows/MainWindow.baml new file mode 100644 index 0000000..c3369cd Binary files /dev/null and b/20241107/WpfApp2/obj/Debug/net8.0-windows/MainWindow.baml differ diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/MainWindow.g.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/MainWindow.g.cs new file mode 100644 index 0000000..646311e --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/MainWindow.g.cs @@ -0,0 +1,77 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6F7822712A1A06D00C8686499772F18C1382EB67" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp2; +using WpfApp2.View.UserControls; + + +namespace WpfApp2 { + + + /// + /// MainWindow + /// + public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/WpfApp2;component/mainwindow.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\MainWindow.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] + void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { + this._contentLoaded = true; + } + } +} + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/MainWindow.g.i.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/MainWindow.g.i.cs new file mode 100644 index 0000000..646311e --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/MainWindow.g.i.cs @@ -0,0 +1,77 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6F7822712A1A06D00C8686499772F18C1382EB67" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp2; +using WpfApp2.View.UserControls; + + +namespace WpfApp2 { + + + /// + /// MainWindow + /// + public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/WpfApp2;component/mainwindow.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\MainWindow.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] + void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { + this._contentLoaded = true; + } + } +} + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/View/UserControls/MenuBar.baml b/20241107/WpfApp2/obj/Debug/net8.0-windows/View/UserControls/MenuBar.baml new file mode 100644 index 0000000..bbd222f Binary files /dev/null and b/20241107/WpfApp2/obj/Debug/net8.0-windows/View/UserControls/MenuBar.baml differ diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/View/UserControls/MenuBar.g.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/View/UserControls/MenuBar.g.cs new file mode 100644 index 0000000..fd9a64c --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/View/UserControls/MenuBar.g.cs @@ -0,0 +1,90 @@ +#pragma checksum "..\..\..\..\..\View\UserControls\MenuBar.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "70D64B5FAC490E4A647A9DA623DC128D3B45EC82" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp2.View.UserControls; + + +namespace WpfApp2.View.UserControls { + + + /// + /// MenuBar + /// + public partial class MenuBar : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + + #line 16 "..\..\..\..\..\View\UserControls\MenuBar.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.MenuItem exit; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/WpfApp2;component/view/usercontrols/menubar.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\..\..\View\UserControls\MenuBar.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] + void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { + switch (connectionId) + { + case 1: + this.exit = ((System.Windows.Controls.MenuItem)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/View/UserControls/MenuBar.g.i.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/View/UserControls/MenuBar.g.i.cs new file mode 100644 index 0000000..fd9a64c --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/View/UserControls/MenuBar.g.i.cs @@ -0,0 +1,90 @@ +#pragma checksum "..\..\..\..\..\View\UserControls\MenuBar.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "70D64B5FAC490E4A647A9DA623DC128D3B45EC82" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp2.View.UserControls; + + +namespace WpfApp2.View.UserControls { + + + /// + /// MenuBar + /// + public partial class MenuBar : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + + #line 16 "..\..\..\..\..\View\UserControls\MenuBar.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.MenuItem exit; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/WpfApp2;component/view/usercontrols/menubar.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\..\..\View\UserControls\MenuBar.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] + void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { + switch (connectionId) + { + case 1: + this.exit = ((System.Windows.Controls.MenuItem)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.AssemblyInfo.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.AssemblyInfo.cs new file mode 100644 index 0000000..c0cbb08 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.AssemblyInfoInputs.cache b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c84ba14 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3f177724edbd37ca568bd47aedb4b2ebfdb958d2778224b4d4870f2f1023736c diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.GeneratedMSBuildEditorConfig.editorconfig b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..99c4875 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp2 +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.GlobalUsings.g.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.assets.cache b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.assets.cache new file mode 100644 index 0000000..3501538 Binary files /dev/null and b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.assets.cache differ diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.csproj.BuildWithSkipAnalyzers b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.csproj.CoreCompileInputs.cache b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..aacd24f --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +6c11bdcd7c7bd85eaf6e055c092fdee202dad82b9652402bace07f723ee7c55b diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.csproj.FileListAbsolute.txt b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..3f0af6c --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.csproj.FileListAbsolute.txt @@ -0,0 +1,23 @@ +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\bin\Debug\net8.0-windows\WpfApp2.exe +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\bin\Debug\net8.0-windows\WpfApp2.deps.json +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\bin\Debug\net8.0-windows\WpfApp2.runtimeconfig.json +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\bin\Debug\net8.0-windows\WpfApp2.dll +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\bin\Debug\net8.0-windows\WpfApp2.pdb +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\MainWindow.g.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\App.g.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\WpfApp2_MarkupCompile.cache +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\WpfApp2_MarkupCompile.lref +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\MainWindow.baml +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\WpfApp2.g.resources +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\WpfApp2.GeneratedMSBuildEditorConfig.editorconfig +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\WpfApp2.AssemblyInfoInputs.cache +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\WpfApp2.AssemblyInfo.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\WpfApp2.csproj.CoreCompileInputs.cache +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\WpfApp2.dll +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\refint\WpfApp2.dll +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\WpfApp2.pdb +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\WpfApp2.genruntimeconfig.cache +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\ref\WpfApp2.dll +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\View\UserControls\MenuBar.g.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\GeneratedInternalTypeHelper.g.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\View\UserControls\MenuBar.baml diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.designer.deps.json b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.designer.deps.json new file mode 100644 index 0000000..8599efd --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.designer.runtimeconfig.json b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.designer.runtimeconfig.json new file mode 100644 index 0000000..d68ec81 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.designer.runtimeconfig.json @@ -0,0 +1,24 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "8.0.0" + } + ], + "additionalProbingPaths": [ + "C:\\Users\\Marci\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\Marci\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true, + "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true + } + } +} \ No newline at end of file diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.dll b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.dll new file mode 100644 index 0000000..65c9cef Binary files /dev/null and b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.dll differ diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.g.resources b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.g.resources new file mode 100644 index 0000000..dc99d29 Binary files /dev/null and b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.g.resources differ diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.genruntimeconfig.cache b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.genruntimeconfig.cache new file mode 100644 index 0000000..511a321 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.genruntimeconfig.cache @@ -0,0 +1 @@ +52db2dc2997984fa04e085c788ba5563180dedb9602fe5531fe0252519f891b7 diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.pdb b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.pdb new file mode 100644 index 0000000..8e92ee5 Binary files /dev/null and b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2.pdb differ diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_MarkupCompile.cache b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_MarkupCompile.cache new file mode 100644 index 0000000..3f13978 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_MarkupCompile.cache @@ -0,0 +1,20 @@ +WpfApp2 + + +winexe +C# +.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\ +WpfApp2 +none +false +TRACE;DEBUG;NET;NET8_0;NETCOREAPP +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\App.xaml +21358919699 + +51702206774 +198-294894759 +MainWindow.xaml;View\UserControls\MenuBar.xaml; + +False + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_MarkupCompile.i.cache b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_MarkupCompile.i.cache new file mode 100644 index 0000000..8a4c38d --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_MarkupCompile.i.cache @@ -0,0 +1,20 @@ +WpfApp2 +1.0.0.0 + +winexe +C# +.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\obj\Debug\net8.0-windows\ +WpfApp2 +none +false +TRACE;DEBUG;NET;NET8_0;NETCOREAPP +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\App.xaml +21358919699 + +71420616922 +198-294894759 +MainWindow.xaml;View\UserControls\MenuBar.xaml; + +True + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_MarkupCompile.i.lref b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_MarkupCompile.i.lref new file mode 100644 index 0000000..4432349 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_MarkupCompile.i.lref @@ -0,0 +1,5 @@ + + +FE:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\MainWindow.xaml;; +FE:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\View\UserControls\MenuBar.xaml;; + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_MarkupCompile.lref b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_MarkupCompile.lref new file mode 100644 index 0000000..4432349 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_MarkupCompile.lref @@ -0,0 +1,5 @@ + + +FE:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\MainWindow.xaml;; +FE:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\View\UserControls\MenuBar.xaml;; + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.AssemblyInfo.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..c0cbb08 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.AssemblyInfoInputs.cache b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c84ba14 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3f177724edbd37ca568bd47aedb4b2ebfdb958d2778224b4d4870f2f1023736c diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..65bdbc5 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp2_b4g1nzrg_wpftmp +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.GlobalUsings.g.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.assets.cache b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.assets.cache new file mode 100644 index 0000000..431f497 Binary files /dev/null and b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.assets.cache differ diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.csproj.BuildWithSkipAnalyzers b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_b4g1nzrg_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.AssemblyInfo.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..c0cbb08 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.AssemblyInfoInputs.cache b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c84ba14 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3f177724edbd37ca568bd47aedb4b2ebfdb958d2778224b4d4870f2f1023736c diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..8e32a5a --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp2_laa4wy5h_wpftmp +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.GlobalUsings.g.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.assets.cache b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.assets.cache new file mode 100644 index 0000000..0449a4f Binary files /dev/null and b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.assets.cache differ diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.csproj.BuildWithSkipAnalyzers b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_laa4wy5h_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.AssemblyInfo.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..c0cbb08 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.AssemblyInfoInputs.cache b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c84ba14 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3f177724edbd37ca568bd47aedb4b2ebfdb958d2778224b4d4870f2f1023736c diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3e78642 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp2_rg3gpdzp_wpftmp +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.GlobalUsings.g.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.assets.cache b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.assets.cache new file mode 100644 index 0000000..b008250 Binary files /dev/null and b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.assets.cache differ diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.csproj.BuildWithSkipAnalyzers b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_rg3gpdzp_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_zagjjkdt_wpftmp.AssemblyInfo.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_zagjjkdt_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..c0cbb08 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_zagjjkdt_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp2")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp2")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp2")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_zagjjkdt_wpftmp.AssemblyInfoInputs.cache b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_zagjjkdt_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c84ba14 --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_zagjjkdt_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +3f177724edbd37ca568bd47aedb4b2ebfdb958d2778224b4d4870f2f1023736c diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_zagjjkdt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_zagjjkdt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..729a61b --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_zagjjkdt_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp2_zagjjkdt_wpftmp +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\WpfApp2\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_zagjjkdt_wpftmp.GlobalUsings.g.cs b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_zagjjkdt_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_zagjjkdt_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_zagjjkdt_wpftmp.assets.cache b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_zagjjkdt_wpftmp.assets.cache new file mode 100644 index 0000000..3dafbd8 Binary files /dev/null and b/20241107/WpfApp2/obj/Debug/net8.0-windows/WpfApp2_zagjjkdt_wpftmp.assets.cache differ diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/apphost.exe b/20241107/WpfApp2/obj/Debug/net8.0-windows/apphost.exe new file mode 100644 index 0000000..a9ef953 Binary files /dev/null and b/20241107/WpfApp2/obj/Debug/net8.0-windows/apphost.exe differ diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/ref/WpfApp2.dll b/20241107/WpfApp2/obj/Debug/net8.0-windows/ref/WpfApp2.dll new file mode 100644 index 0000000..4d678f1 Binary files /dev/null and b/20241107/WpfApp2/obj/Debug/net8.0-windows/ref/WpfApp2.dll differ diff --git a/20241107/WpfApp2/obj/Debug/net8.0-windows/refint/WpfApp2.dll b/20241107/WpfApp2/obj/Debug/net8.0-windows/refint/WpfApp2.dll new file mode 100644 index 0000000..4d678f1 Binary files /dev/null and b/20241107/WpfApp2/obj/Debug/net8.0-windows/refint/WpfApp2.dll differ diff --git a/20241107/WpfApp2/obj/WpfApp2.csproj.nuget.dgspec.json b/20241107/WpfApp2/obj/WpfApp2.csproj.nuget.dgspec.json new file mode 100644 index 0000000..b2429bb --- /dev/null +++ b/20241107/WpfApp2/obj/WpfApp2.csproj.nuget.dgspec.json @@ -0,0 +1,70 @@ +{ + "format": 1, + "restore": { + "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp2\\WpfApp2.csproj": {} + }, + "projects": { + "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp2\\WpfApp2.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp2\\WpfApp2.csproj", + "projectName": "WpfApp2", + "projectPath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp2\\WpfApp2.csproj", + "packagesPath": "C:\\Users\\Marci\\.nuget\\packages\\", + "outputPath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp2\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Marci\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/20241107/WpfApp2/obj/WpfApp2.csproj.nuget.g.props b/20241107/WpfApp2/obj/WpfApp2.csproj.nuget.g.props new file mode 100644 index 0000000..e68eadd --- /dev/null +++ b/20241107/WpfApp2/obj/WpfApp2.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Marci\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.8.0 + + + + + + \ No newline at end of file diff --git a/20241107/WpfApp2/obj/WpfApp2.csproj.nuget.g.targets b/20241107/WpfApp2/obj/WpfApp2.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/20241107/WpfApp2/obj/WpfApp2.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/20241107/WpfApp2/obj/WpfApp2_zagjjkdt_wpftmp.csproj.nuget.dgspec.json b/20241107/WpfApp2/obj/WpfApp2_zagjjkdt_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..b2429bb --- /dev/null +++ b/20241107/WpfApp2/obj/WpfApp2_zagjjkdt_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,70 @@ +{ + "format": 1, + "restore": { + "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp2\\WpfApp2.csproj": {} + }, + "projects": { + "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp2\\WpfApp2.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp2\\WpfApp2.csproj", + "projectName": "WpfApp2", + "projectPath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp2\\WpfApp2.csproj", + "packagesPath": "C:\\Users\\Marci\\.nuget\\packages\\", + "outputPath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp2\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Marci\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/20241107/WpfApp2/obj/WpfApp2_zagjjkdt_wpftmp.csproj.nuget.g.props b/20241107/WpfApp2/obj/WpfApp2_zagjjkdt_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..e68eadd --- /dev/null +++ b/20241107/WpfApp2/obj/WpfApp2_zagjjkdt_wpftmp.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Marci\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.8.0 + + + + + + \ No newline at end of file diff --git a/20241107/WpfApp2/obj/WpfApp2_zagjjkdt_wpftmp.csproj.nuget.g.targets b/20241107/WpfApp2/obj/WpfApp2_zagjjkdt_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/20241107/WpfApp2/obj/WpfApp2_zagjjkdt_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/20241107/WpfApp2/obj/project.assets.json b/20241107/WpfApp2/obj/project.assets.json new file mode 100644 index 0000000..8595c71 --- /dev/null +++ b/20241107/WpfApp2/obj/project.assets.json @@ -0,0 +1,76 @@ +{ + "version": 3, + "targets": { + "net8.0-windows7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0-windows7.0": [] + }, + "packageFolders": { + "C:\\Users\\Marci\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp2\\WpfApp2.csproj", + "projectName": "WpfApp2", + "projectPath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp2\\WpfApp2.csproj", + "packagesPath": "C:\\Users\\Marci\\.nuget\\packages\\", + "outputPath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp2\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Marci\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/20241107/WpfApp2/obj/project.nuget.cache b/20241107/WpfApp2/obj/project.nuget.cache new file mode 100644 index 0000000..a1697e2 --- /dev/null +++ b/20241107/WpfApp2/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "McAb7zQ6kwp1spn1I8jWACsE5OMsLT55oO0qj49/HddtZvfsJVceGYZJxCr3Hi79hCF/TKpSunGh7LOnfdE6Ug==", + "success": true, + "projectFilePath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\WpfApp2\\WpfApp2.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/20241107/filedialog/.vs/ProjectEvaluation/filedialog.metadata.v7.bin b/20241107/filedialog/.vs/ProjectEvaluation/filedialog.metadata.v7.bin new file mode 100644 index 0000000..9076f20 Binary files /dev/null and b/20241107/filedialog/.vs/ProjectEvaluation/filedialog.metadata.v7.bin differ diff --git a/20241107/filedialog/.vs/ProjectEvaluation/filedialog.projects.v7.bin b/20241107/filedialog/.vs/ProjectEvaluation/filedialog.projects.v7.bin new file mode 100644 index 0000000..ad6376c Binary files /dev/null and b/20241107/filedialog/.vs/ProjectEvaluation/filedialog.projects.v7.bin differ diff --git a/20241107/filedialog/.vs/filedialog/DesignTimeBuild/.dtbcache.v2 b/20241107/filedialog/.vs/filedialog/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..3ff4b13 Binary files /dev/null and b/20241107/filedialog/.vs/filedialog/DesignTimeBuild/.dtbcache.v2 differ diff --git a/20241107/filedialog/.vs/filedialog/FileContentIndex/dcb39e9d-410c-4b7a-a9b8-07edfe5cf891.vsidx b/20241107/filedialog/.vs/filedialog/FileContentIndex/dcb39e9d-410c-4b7a-a9b8-07edfe5cf891.vsidx new file mode 100644 index 0000000..bef9844 Binary files /dev/null and b/20241107/filedialog/.vs/filedialog/FileContentIndex/dcb39e9d-410c-4b7a-a9b8-07edfe5cf891.vsidx differ diff --git a/20241107/filedialog/.vs/filedialog/v17/.futdcache.v2 b/20241107/filedialog/.vs/filedialog/v17/.futdcache.v2 new file mode 100644 index 0000000..1116001 Binary files /dev/null and b/20241107/filedialog/.vs/filedialog/v17/.futdcache.v2 differ diff --git a/20241107/filedialog/.vs/filedialog/v17/.suo b/20241107/filedialog/.vs/filedialog/v17/.suo new file mode 100644 index 0000000..ba26b98 Binary files /dev/null and b/20241107/filedialog/.vs/filedialog/v17/.suo differ diff --git a/20241107/filedialog/App.xaml b/20241107/filedialog/App.xaml new file mode 100644 index 0000000..c52f312 --- /dev/null +++ b/20241107/filedialog/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/20241107/filedialog/App.xaml.cs b/20241107/filedialog/App.xaml.cs new file mode 100644 index 0000000..2dc484a --- /dev/null +++ b/20241107/filedialog/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace filedialog +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/20241107/filedialog/AssemblyInfo.cs b/20241107/filedialog/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/20241107/filedialog/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/20241107/filedialog/MainWindow.xaml b/20241107/filedialog/MainWindow.xaml new file mode 100644 index 0000000..9f2f5aa --- /dev/null +++ b/20241107/filedialog/MainWindow.xaml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + diff --git a/20241107/filedialog/MainWindow.xaml.cs b/20241107/filedialog/MainWindow.xaml.cs new file mode 100644 index 0000000..1006c38 --- /dev/null +++ b/20241107/filedialog/MainWindow.xaml.cs @@ -0,0 +1,46 @@ +using Microsoft.Win32; +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 filedialog +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + + private void btnFire_Click(object sender, RoutedEventArgs e) + { + OpenFileDialog ofd = new OpenFileDialog(); + ofd.Filter = "Image files |*.bmp;*.jpg;*.png"; + ofd.FilterIndex = 1; + bool?success = ofd.ShowDialog(); + + if (success == true) + { + string path = ofd.FileName; + + tbInfo.Text = path; + + imageholder.Source = new BitmapImage(new Uri(path)); + } + else + { + //no + } + } + } +} \ No newline at end of file diff --git a/20241107/filedialog/bin/Debug/net8.0-windows/filedialog.deps.json b/20241107/filedialog/bin/Debug/net8.0-windows/filedialog.deps.json new file mode 100644 index 0000000..9e34440 --- /dev/null +++ b/20241107/filedialog/bin/Debug/net8.0-windows/filedialog.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "filedialog/1.0.0": { + "runtime": { + "filedialog.dll": {} + } + } + } + }, + "libraries": { + "filedialog/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/20241107/filedialog/bin/Debug/net8.0-windows/filedialog.dll b/20241107/filedialog/bin/Debug/net8.0-windows/filedialog.dll new file mode 100644 index 0000000..9c40a31 Binary files /dev/null and b/20241107/filedialog/bin/Debug/net8.0-windows/filedialog.dll differ diff --git a/20241107/filedialog/bin/Debug/net8.0-windows/filedialog.exe b/20241107/filedialog/bin/Debug/net8.0-windows/filedialog.exe new file mode 100644 index 0000000..3a91529 Binary files /dev/null and b/20241107/filedialog/bin/Debug/net8.0-windows/filedialog.exe differ diff --git a/20241107/filedialog/bin/Debug/net8.0-windows/filedialog.pdb b/20241107/filedialog/bin/Debug/net8.0-windows/filedialog.pdb new file mode 100644 index 0000000..b6c85c8 Binary files /dev/null and b/20241107/filedialog/bin/Debug/net8.0-windows/filedialog.pdb differ diff --git a/20241107/filedialog/bin/Debug/net8.0-windows/filedialog.runtimeconfig.json b/20241107/filedialog/bin/Debug/net8.0-windows/filedialog.runtimeconfig.json new file mode 100644 index 0000000..1dc0145 --- /dev/null +++ b/20241107/filedialog/bin/Debug/net8.0-windows/filedialog.runtimeconfig.json @@ -0,0 +1,18 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true + } + } +} \ No newline at end of file diff --git a/20241107/filedialog/filedialog.csproj b/20241107/filedialog/filedialog.csproj new file mode 100644 index 0000000..e3e33e3 --- /dev/null +++ b/20241107/filedialog/filedialog.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + + diff --git a/20241107/filedialog/filedialog.csproj.user b/20241107/filedialog/filedialog.csproj.user new file mode 100644 index 0000000..644b0a6 --- /dev/null +++ b/20241107/filedialog/filedialog.csproj.user @@ -0,0 +1,14 @@ + + + + + + Designer + + + + + Designer + + + \ No newline at end of file diff --git a/20241107/filedialog/filedialog.sln b/20241107/filedialog/filedialog.sln new file mode 100644 index 0000000..c448a11 --- /dev/null +++ b/20241107/filedialog/filedialog.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34408.163 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "filedialog", "filedialog.csproj", "{525F5D09-9881-4DAE-9C44-89F463E2D05C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {525F5D09-9881-4DAE-9C44-89F463E2D05C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {525F5D09-9881-4DAE-9C44-89F463E2D05C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {525F5D09-9881-4DAE-9C44-89F463E2D05C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {525F5D09-9881-4DAE-9C44-89F463E2D05C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {DB3566BB-684A-464C-8DCF-63242EC36826} + EndGlobalSection +EndGlobal diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/20241107/filedialog/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/App.g.cs b/20241107/filedialog/obj/Debug/net8.0-windows/App.g.cs new file mode 100644 index 0000000..4d09b56 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/App.g.cs @@ -0,0 +1,71 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "A3B511C2A9631910343FEED127912CD6F449DA5D" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using filedialog; + + +namespace filedialog { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public void InitializeComponent() { + + #line 5 "..\..\..\App.xaml" + this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); + + #line default + #line hidden + } + + /// + /// Application Entry Point. + /// + [System.STAThreadAttribute()] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public static void Main() { + filedialog.App app = new filedialog.App(); + app.InitializeComponent(); + app.Run(); + } + } +} + diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/App.g.i.cs b/20241107/filedialog/obj/Debug/net8.0-windows/App.g.i.cs new file mode 100644 index 0000000..4d09b56 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/App.g.i.cs @@ -0,0 +1,71 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "A3B511C2A9631910343FEED127912CD6F449DA5D" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using filedialog; + + +namespace filedialog { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public void InitializeComponent() { + + #line 5 "..\..\..\App.xaml" + this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); + + #line default + #line hidden + } + + /// + /// Application Entry Point. + /// + [System.STAThreadAttribute()] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public static void Main() { + filedialog.App app = new filedialog.App(); + app.InitializeComponent(); + app.Run(); + } + } +} + diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/MainWindow.baml b/20241107/filedialog/obj/Debug/net8.0-windows/MainWindow.baml new file mode 100644 index 0000000..ef9aa58 Binary files /dev/null and b/20241107/filedialog/obj/Debug/net8.0-windows/MainWindow.baml differ diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/MainWindow.g.cs b/20241107/filedialog/obj/Debug/net8.0-windows/MainWindow.g.cs new file mode 100644 index 0000000..3294e7a --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/MainWindow.g.cs @@ -0,0 +1,118 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D3C820B015B96BC36A9BCC6FBBE76AB524C9FBB9" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using filedialog; + + +namespace filedialog { + + + /// + /// MainWindow + /// + public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + + #line 15 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Button btnFire; + + #line default + #line hidden + + + #line 17 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.TextBlock tbInfo; + + #line default + #line hidden + + + #line 18 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Image imageholder; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/filedialog;component/mainwindow.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\MainWindow.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] + void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { + switch (connectionId) + { + case 1: + this.btnFire = ((System.Windows.Controls.Button)(target)); + + #line 15 "..\..\..\MainWindow.xaml" + this.btnFire.Click += new System.Windows.RoutedEventHandler(this.btnFire_Click); + + #line default + #line hidden + return; + case 2: + this.tbInfo = ((System.Windows.Controls.TextBlock)(target)); + return; + case 3: + this.imageholder = ((System.Windows.Controls.Image)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/MainWindow.g.i.cs b/20241107/filedialog/obj/Debug/net8.0-windows/MainWindow.g.i.cs new file mode 100644 index 0000000..3294e7a --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/MainWindow.g.i.cs @@ -0,0 +1,118 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "D3C820B015B96BC36A9BCC6FBBE76AB524C9FBB9" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using filedialog; + + +namespace filedialog { + + + /// + /// MainWindow + /// + public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + + #line 15 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Button btnFire; + + #line default + #line hidden + + + #line 17 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.TextBlock tbInfo; + + #line default + #line hidden + + + #line 18 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Image imageholder; + + #line default + #line hidden + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/filedialog;component/mainwindow.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\MainWindow.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.1.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] + void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { + switch (connectionId) + { + case 1: + this.btnFire = ((System.Windows.Controls.Button)(target)); + + #line 15 "..\..\..\MainWindow.xaml" + this.btnFire.Click += new System.Windows.RoutedEventHandler(this.btnFire_Click); + + #line default + #line hidden + return; + case 2: + this.tbInfo = ((System.Windows.Controls.TextBlock)(target)); + return; + case 3: + this.imageholder = ((System.Windows.Controls.Image)(target)); + return; + } + this._contentLoaded = true; + } + } +} + diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/apphost.exe b/20241107/filedialog/obj/Debug/net8.0-windows/apphost.exe new file mode 100644 index 0000000..3a91529 Binary files /dev/null and b/20241107/filedialog/obj/Debug/net8.0-windows/apphost.exe differ diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.AssemblyInfo.cs b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.AssemblyInfo.cs new file mode 100644 index 0000000..f5341f8 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("filedialog")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("filedialog")] +[assembly: System.Reflection.AssemblyTitleAttribute("filedialog")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.AssemblyInfoInputs.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.AssemblyInfoInputs.cache new file mode 100644 index 0000000..cae138a --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b53da75438e7c141171f8620f5c964543fff057899bb01608fcd7bfa73bf89fd diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.GeneratedMSBuildEditorConfig.editorconfig b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..fa5252b --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = filedialog +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.GlobalUsings.g.cs b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.assets.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.assets.cache new file mode 100644 index 0000000..7e5bdb9 Binary files /dev/null and b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.assets.cache differ diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.csproj.BuildWithSkipAnalyzers b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.csproj.CoreCompileInputs.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..249b2f4 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +6044dd2d8165ec20901dd73c69b6d7aeec2bc57ab4fb54353db71971636d25c6 diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.csproj.FileListAbsolute.txt b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..4477a8c --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.csproj.FileListAbsolute.txt @@ -0,0 +1,20 @@ +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\bin\Debug\net8.0-windows\filedialog.exe +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\bin\Debug\net8.0-windows\filedialog.deps.json +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\bin\Debug\net8.0-windows\filedialog.runtimeconfig.json +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\bin\Debug\net8.0-windows\filedialog.dll +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\bin\Debug\net8.0-windows\filedialog.pdb +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\MainWindow.g.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\App.g.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\filedialog_MarkupCompile.cache +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\filedialog_MarkupCompile.lref +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\MainWindow.baml +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\filedialog.g.resources +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\filedialog.GeneratedMSBuildEditorConfig.editorconfig +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\filedialog.AssemblyInfoInputs.cache +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\filedialog.AssemblyInfo.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\filedialog.csproj.CoreCompileInputs.cache +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\filedialog.dll +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\refint\filedialog.dll +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\filedialog.pdb +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\filedialog.genruntimeconfig.cache +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\ref\filedialog.dll diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.designer.deps.json b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.designer.deps.json new file mode 100644 index 0000000..8599efd --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.designer.runtimeconfig.json b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.designer.runtimeconfig.json new file mode 100644 index 0000000..d68ec81 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.designer.runtimeconfig.json @@ -0,0 +1,24 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "8.0.0" + } + ], + "additionalProbingPaths": [ + "C:\\Users\\Marci\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\Marci\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true, + "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true + } + } +} \ No newline at end of file diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.dll b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.dll new file mode 100644 index 0000000..9c40a31 Binary files /dev/null and b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.dll differ diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.g.resources b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.g.resources new file mode 100644 index 0000000..e1a78a0 Binary files /dev/null and b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.g.resources differ diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.genruntimeconfig.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.genruntimeconfig.cache new file mode 100644 index 0000000..37442f1 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.genruntimeconfig.cache @@ -0,0 +1 @@ +f8225bbc5926474534ccb4a06e1bfd2db67a545b68cb0466647c5f8ebe5de6dd diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.pdb b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.pdb new file mode 100644 index 0000000..b6c85c8 Binary files /dev/null and b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog.pdb differ diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_MarkupCompile.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_MarkupCompile.cache new file mode 100644 index 0000000..ffc5865 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_MarkupCompile.cache @@ -0,0 +1,20 @@ +filedialog + + +winexe +C# +.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\ +filedialog +none +false +TRACE;DEBUG;NET;NET8_0;NETCOREAPP +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\App.xaml +11407045341 + +41810768577 +198-294894759 +MainWindow.xaml; + +False + diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_MarkupCompile.i.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_MarkupCompile.i.cache new file mode 100644 index 0000000..32275c6 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_MarkupCompile.i.cache @@ -0,0 +1,20 @@ +filedialog +1.0.0.0 + +winexe +C# +.cs +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\obj\Debug\net8.0-windows\ +filedialog +none +false +TRACE;DEBUG;NET;NET8_0;NETCOREAPP +E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\App.xaml +11407045341 + +6-56486786 +198-294894759 +MainWindow.xaml; + +False + diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_MarkupCompile.lref b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_MarkupCompile.lref new file mode 100644 index 0000000..b63e070 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_MarkupCompile.lref @@ -0,0 +1,4 @@ + + +FE:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\MainWindow.xaml;; + diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.AssemblyInfo.cs b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..f5341f8 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("filedialog")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("filedialog")] +[assembly: System.Reflection.AssemblyTitleAttribute("filedialog")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.AssemblyInfoInputs.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..cae138a --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b53da75438e7c141171f8620f5c964543fff057899bb01608fcd7bfa73bf89fd diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..32ef49e --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = filedialog_flzfbwjx_wpftmp +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.GlobalUsings.g.cs b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.assets.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.assets.cache new file mode 100644 index 0000000..cee889e Binary files /dev/null and b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.assets.cache differ diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.csproj.BuildWithSkipAnalyzers b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_flzfbwjx_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.AssemblyInfo.cs b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..f5341f8 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("filedialog")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("filedialog")] +[assembly: System.Reflection.AssemblyTitleAttribute("filedialog")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.AssemblyInfoInputs.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..cae138a --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b53da75438e7c141171f8620f5c964543fff057899bb01608fcd7bfa73bf89fd diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e93ae26 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = filedialog_lnjgflmz_wpftmp +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.GlobalUsings.g.cs b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.assets.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.assets.cache new file mode 100644 index 0000000..7157550 Binary files /dev/null and b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.assets.cache differ diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.csproj.BuildWithSkipAnalyzers b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lnjgflmz_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.AssemblyInfo.cs b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..f5341f8 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("filedialog")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("filedialog")] +[assembly: System.Reflection.AssemblyTitleAttribute("filedialog")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.AssemblyInfoInputs.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..cae138a --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b53da75438e7c141171f8620f5c964543fff057899bb01608fcd7bfa73bf89fd diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..cc747e4 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = filedialog_lppdhhj4_wpftmp +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.GlobalUsings.g.cs b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.assets.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.assets.cache new file mode 100644 index 0000000..0802c94 Binary files /dev/null and b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.assets.cache differ diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.csproj.BuildWithSkipAnalyzers b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_lppdhhj4_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.AssemblyInfo.cs b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..f5341f8 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("filedialog")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("filedialog")] +[assembly: System.Reflection.AssemblyTitleAttribute("filedialog")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.AssemblyInfoInputs.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..cae138a --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b53da75438e7c141171f8620f5c964543fff057899bb01608fcd7bfa73bf89fd diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..14b5b57 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = filedialog_nfdhszar_wpftmp +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.GlobalUsings.g.cs b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.assets.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.assets.cache new file mode 100644 index 0000000..c3b53a1 Binary files /dev/null and b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.assets.cache differ diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.csproj.BuildWithSkipAnalyzers b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_nfdhszar_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.AssemblyInfo.cs b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..f5341f8 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("filedialog")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5452d2423bd4d87df4d6c44b7f4b31271bbf128e")] +[assembly: System.Reflection.AssemblyProductAttribute("filedialog")] +[assembly: System.Reflection.AssemblyTitleAttribute("filedialog")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.AssemblyInfoInputs.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..cae138a --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b53da75438e7c141171f8620f5c964543fff057899bb01608fcd7bfa73bf89fd diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3a74c64 --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = filedialog_xlzvipit_wpftmp +build_property.ProjectDir = E:\Házi\Programozás\C#\Suli\ProgaOra\20241107\filedialog\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.GlobalUsings.g.cs b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.assets.cache b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.assets.cache new file mode 100644 index 0000000..e76cab9 Binary files /dev/null and b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.assets.cache differ diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.csproj.BuildWithSkipAnalyzers b/20241107/filedialog/obj/Debug/net8.0-windows/filedialog_xlzvipit_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/ref/filedialog.dll b/20241107/filedialog/obj/Debug/net8.0-windows/ref/filedialog.dll new file mode 100644 index 0000000..7049e03 Binary files /dev/null and b/20241107/filedialog/obj/Debug/net8.0-windows/ref/filedialog.dll differ diff --git a/20241107/filedialog/obj/Debug/net8.0-windows/refint/filedialog.dll b/20241107/filedialog/obj/Debug/net8.0-windows/refint/filedialog.dll new file mode 100644 index 0000000..7049e03 Binary files /dev/null and b/20241107/filedialog/obj/Debug/net8.0-windows/refint/filedialog.dll differ diff --git a/20241107/filedialog/obj/filedialog.csproj.nuget.dgspec.json b/20241107/filedialog/obj/filedialog.csproj.nuget.dgspec.json new file mode 100644 index 0000000..39b998e --- /dev/null +++ b/20241107/filedialog/obj/filedialog.csproj.nuget.dgspec.json @@ -0,0 +1,70 @@ +{ + "format": 1, + "restore": { + "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\filedialog\\filedialog.csproj": {} + }, + "projects": { + "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\filedialog\\filedialog.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\filedialog\\filedialog.csproj", + "projectName": "filedialog", + "projectPath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\filedialog\\filedialog.csproj", + "packagesPath": "C:\\Users\\Marci\\.nuget\\packages\\", + "outputPath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\filedialog\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Marci\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/20241107/filedialog/obj/filedialog.csproj.nuget.g.props b/20241107/filedialog/obj/filedialog.csproj.nuget.g.props new file mode 100644 index 0000000..e68eadd --- /dev/null +++ b/20241107/filedialog/obj/filedialog.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Marci\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.8.0 + + + + + + \ No newline at end of file diff --git a/20241107/filedialog/obj/filedialog.csproj.nuget.g.targets b/20241107/filedialog/obj/filedialog.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/20241107/filedialog/obj/filedialog.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/20241107/filedialog/obj/project.assets.json b/20241107/filedialog/obj/project.assets.json new file mode 100644 index 0000000..7b98eac --- /dev/null +++ b/20241107/filedialog/obj/project.assets.json @@ -0,0 +1,76 @@ +{ + "version": 3, + "targets": { + "net8.0-windows7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0-windows7.0": [] + }, + "packageFolders": { + "C:\\Users\\Marci\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\filedialog\\filedialog.csproj", + "projectName": "filedialog", + "projectPath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\filedialog\\filedialog.csproj", + "packagesPath": "C:\\Users\\Marci\\.nuget\\packages\\", + "outputPath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\filedialog\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Marci\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/20241107/filedialog/obj/project.nuget.cache b/20241107/filedialog/obj/project.nuget.cache new file mode 100644 index 0000000..ba7217d --- /dev/null +++ b/20241107/filedialog/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "3lylU74tAOk/IDsmWhDMBKTCtSoXh/hp69vmm9iF7ISgX3SIwoLEELo1ilAcpNwpndFkTfAJy5OZCWENGbZ3FQ==", + "success": true, + "projectFilePath": "E:\\Házi\\Programozás\\C#\\Suli\\ProgaOra\\20241107\\filedialog\\filedialog.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file