├── .gitignore ├── LICENSE ├── Microsoft.Diagnostics.Tracing ├── EventSource │ ├── EventSource.sln │ ├── EventSource │ │ ├── 00_AllSamples.cs │ │ ├── 00_CommonListener.cs │ │ ├── 10_MinimalEventSource.cs │ │ ├── 20_CustomizedEventSource.cs │ │ ├── 21_CustomizedForPerfEventSource.cs │ │ ├── 30_EventLogEventSource.cs │ │ ├── 40_LocalizedEventSource.cs │ │ ├── 50_LocalizedEventLogEventSource.cs │ │ ├── App.config │ │ ├── EventSource.csproj │ │ ├── LesResource.fr-FR.resx │ │ ├── LesResource.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── README.md │ └── docs │ │ ├── EventRegister.md │ │ ├── EventRegister_ErrorList.png │ │ ├── EventSource.md │ │ ├── EventSource_PerfView_EventViewer.png │ │ └── EventSource_PerfView_Events.png └── TraceEvent │ ├── README.md │ ├── TraceEvent.sln │ ├── TraceEvent │ ├── 00_AllSamples.cs │ ├── 10_SimpleEventSourceMonitor.cs │ ├── 11_SimpleEventSourceFile.cs │ ├── 20_ObserveGCEvent.cs │ ├── 21_ObserveJitEvents.cs │ ├── 22_ObserveEventSource.cs │ ├── 30_MonitorLoads.cs │ ├── 31_KernelAndClrMonitor.cs │ ├── 32_KernelAndClrFile.cs │ ├── 33_KernelAndClrMonitorWin7.cs │ ├── 34_KernelAndClrFileWin7.cs │ ├── 40_SimpleTraceLog.cs │ ├── 41_TraceLogMonitor.cs │ ├── 50_SimpleFileRelogger.cs │ ├── 51_SimpleMonitorRelogger.cs │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SupportFiles │ │ └── EventProducer.cs │ ├── TraceEvent.ReadMe.txt │ ├── TraceEvent.ReleaseNotes.txt │ ├── TraceEvent.csproj │ └── packages.config │ └── docs │ ├── TraceEvent.md │ ├── TraceEvent_EventParsing.png │ └── TraceEvent_Overview.png ├── README.md ├── SECURITY.md ├── System.Numerics └── SIMD │ ├── Mandelbrot │ ├── Abstractions.cs │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── FlyThru.xaml │ ├── FlyThru.xaml.cs │ ├── Interfaces.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Mandelbrot.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RunWithSimd.bat │ ├── ScalarDouble.cs │ ├── ScalarFloat.cs │ ├── VectorDouble.cs │ ├── VectorDoubleStrict.cs │ ├── VectorFloat.cs │ ├── VectorFloatStrict.cs │ ├── VectorHelpers.cs │ ├── WPFHelpers.cs │ └── packages.config │ ├── README.md │ ├── RayTracer │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Camera.cs │ ├── Color.cs │ ├── Intersection.cs │ ├── Light.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Materials │ │ ├── CheckerboardMaterial.cs │ │ ├── Material.cs │ │ ├── SolidMaterial.cs │ │ └── UVCoordinate.cs │ ├── Objects │ │ ├── Disc.cs │ │ ├── DrawableSceneObject.cs │ │ ├── InfinitePlane.cs │ │ ├── Quad.cs │ │ └── Sphere.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Ray.cs │ ├── RayTracer.csproj │ ├── RunWithSimd.bat │ ├── Scene.cs │ ├── SceneObjectBase.cs │ ├── Util.cs │ └── packages.config │ ├── System.Numerics.Vectors.SampleCode.sln │ ├── disable-JIT.cmd │ └── enable-JIT.cmd ├── System.Reflection.Metadata └── MdDumper │ ├── MdDumper.csproj │ ├── Program.cs │ ├── README.md │ └── Visualization │ └── MetadataVisualizer.cs └── WinForms-HDPI ├── PerMonitorAware ├── App.config ├── CurrentDPILabel.cs ├── CustomDrawing.Designer.cs ├── CustomDrawing.cs ├── CustomDrawing.resx ├── Error.ico ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── PerMonitorDemo.csproj ├── PerMonitorDemo.sln ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ScaleButtonImages.Designer.cs ├── ScaleButtonImages.cs ├── ScaleButtonImages.resx ├── SimpleLayout.Designer.cs ├── SimpleLayout.cs ├── SimpleLayout.resx ├── Wrench.ico ├── app.manifest └── wfc.ico ├── README.md └── SystemAware ├── App.config ├── Calendar.Designer.cs ├── Calendar.cs ├── Calendar.resx ├── DataGridViewHeadersScaling.Designer.cs ├── DataGridViewHeadersScaling.cs ├── DataGridViewHeadersScaling.resx ├── HighDpiDemo.csproj ├── HighDpiDemo.sln ├── HighDpiDemo_TemporaryKey.pfx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── MenuStripAndCheckedListBox.Designer.cs ├── MenuStripAndCheckedListBox.cs ├── MenuStripAndCheckedListBox.resx ├── MultipleScalingPasses.Designer.cs ├── MultipleScalingPasses.cs ├── MultipleScalingPasses.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── RightAnchor.Designer.cs ├── RightAnchor.cs ├── RightAnchor.resx └── app.manifest /.gitignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | *.user 3 | *.suo 4 | bin 5 | obj 6 | msbuild.log 7 | packages 8 | .vs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource.sln -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource/00_AllSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource/00_AllSamples.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource/00_CommonListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource/00_CommonListener.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource/10_MinimalEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource/10_MinimalEventSource.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource/20_CustomizedEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource/20_CustomizedEventSource.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource/21_CustomizedForPerfEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource/21_CustomizedForPerfEventSource.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource/30_EventLogEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource/30_EventLogEventSource.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource/40_LocalizedEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource/40_LocalizedEventSource.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource/50_LocalizedEventLogEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource/50_LocalizedEventLogEventSource.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource/App.config -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource/EventSource.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource/EventSource.csproj -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource/LesResource.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource/LesResource.fr-FR.resx -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource/LesResource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource/LesResource.resx -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource/Program.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/EventSource/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/EventSource/packages.config -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/README.md -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/docs/EventRegister.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/docs/EventRegister.md -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/docs/EventRegister_ErrorList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/docs/EventRegister_ErrorList.png -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/docs/EventSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/docs/EventSource.md -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/docs/EventSource_PerfView_EventViewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/docs/EventSource_PerfView_EventViewer.png -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/EventSource/docs/EventSource_PerfView_Events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/EventSource/docs/EventSource_PerfView_Events.png -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/README.md -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent.sln -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/00_AllSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/00_AllSamples.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/10_SimpleEventSourceMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/10_SimpleEventSourceMonitor.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/11_SimpleEventSourceFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/11_SimpleEventSourceFile.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/20_ObserveGCEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/20_ObserveGCEvent.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/21_ObserveJitEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/21_ObserveJitEvents.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/22_ObserveEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/22_ObserveEventSource.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/30_MonitorLoads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/30_MonitorLoads.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/31_KernelAndClrMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/31_KernelAndClrMonitor.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/32_KernelAndClrFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/32_KernelAndClrFile.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/33_KernelAndClrMonitorWin7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/33_KernelAndClrMonitorWin7.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/34_KernelAndClrFileWin7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/34_KernelAndClrFileWin7.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/40_SimpleTraceLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/40_SimpleTraceLog.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/41_TraceLogMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/41_TraceLogMonitor.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/50_SimpleFileRelogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/50_SimpleFileRelogger.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/51_SimpleMonitorRelogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/51_SimpleMonitorRelogger.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/App.config -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/Program.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/SupportFiles/EventProducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/SupportFiles/EventProducer.cs -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/TraceEvent.ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/TraceEvent.ReadMe.txt -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/TraceEvent.ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/TraceEvent.ReleaseNotes.txt -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/TraceEvent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/TraceEvent.csproj -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/TraceEvent/packages.config -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/docs/TraceEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/docs/TraceEvent.md -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/docs/TraceEvent_EventParsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/docs/TraceEvent_EventParsing.png -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Tracing/TraceEvent/docs/TraceEvent_Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/Microsoft.Diagnostics.Tracing/TraceEvent/docs/TraceEvent_Overview.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/Abstractions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/Abstractions.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/App.config -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/App.xaml -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/App.xaml.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/FlyThru.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/FlyThru.xaml -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/FlyThru.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/FlyThru.xaml.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/Interfaces.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/MainWindow.xaml -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/MainWindow.xaml.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/Mandelbrot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/Mandelbrot.csproj -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/RunWithSimd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/RunWithSimd.bat -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/ScalarDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/ScalarDouble.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/ScalarFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/ScalarFloat.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/VectorDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/VectorDouble.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/VectorDoubleStrict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/VectorDoubleStrict.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/VectorFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/VectorFloat.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/VectorFloatStrict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/VectorFloatStrict.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/VectorHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/VectorHelpers.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/WPFHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/WPFHelpers.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/Mandelbrot/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/Mandelbrot/packages.config -------------------------------------------------------------------------------- /System.Numerics/SIMD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/README.md -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/App.config -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/App.xaml -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/App.xaml.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Camera.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Color.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Intersection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Intersection.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Light.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Light.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/MainWindow.xaml -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/MainWindow.xaml.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Materials/CheckerboardMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Materials/CheckerboardMaterial.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Materials/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Materials/Material.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Materials/SolidMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Materials/SolidMaterial.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Materials/UVCoordinate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Materials/UVCoordinate.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Objects/Disc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Objects/Disc.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Objects/DrawableSceneObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Objects/DrawableSceneObject.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Objects/InfinitePlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Objects/InfinitePlane.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Objects/Quad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Objects/Quad.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Objects/Sphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Objects/Sphere.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Ray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Ray.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/RayTracer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/RayTracer.csproj -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/RunWithSimd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/RunWithSimd.bat -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Scene.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/SceneObjectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/SceneObjectBase.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/Util.cs -------------------------------------------------------------------------------- /System.Numerics/SIMD/RayTracer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/RayTracer/packages.config -------------------------------------------------------------------------------- /System.Numerics/SIMD/System.Numerics.Vectors.SampleCode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/System.Numerics.Vectors.SampleCode.sln -------------------------------------------------------------------------------- /System.Numerics/SIMD/disable-JIT.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/disable-JIT.cmd -------------------------------------------------------------------------------- /System.Numerics/SIMD/enable-JIT.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Numerics/SIMD/enable-JIT.cmd -------------------------------------------------------------------------------- /System.Reflection.Metadata/MdDumper/MdDumper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Reflection.Metadata/MdDumper/MdDumper.csproj -------------------------------------------------------------------------------- /System.Reflection.Metadata/MdDumper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Reflection.Metadata/MdDumper/Program.cs -------------------------------------------------------------------------------- /System.Reflection.Metadata/MdDumper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Reflection.Metadata/MdDumper/README.md -------------------------------------------------------------------------------- /System.Reflection.Metadata/MdDumper/Visualization/MetadataVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/System.Reflection.Metadata/MdDumper/Visualization/MetadataVisualizer.cs -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/App.config -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/CurrentDPILabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/CurrentDPILabel.cs -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/CustomDrawing.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/CustomDrawing.Designer.cs -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/CustomDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/CustomDrawing.cs -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/CustomDrawing.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/CustomDrawing.resx -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/Error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/Error.ico -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/MainForm.Designer.cs -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/MainForm.cs -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/MainForm.resx -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/PerMonitorDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/PerMonitorDemo.csproj -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/PerMonitorDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/PerMonitorDemo.sln -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/Program.cs -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/Properties/Resources.resx -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/Properties/Settings.settings -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/ScaleButtonImages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/ScaleButtonImages.Designer.cs -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/ScaleButtonImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/ScaleButtonImages.cs -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/ScaleButtonImages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/ScaleButtonImages.resx -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/SimpleLayout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/SimpleLayout.Designer.cs -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/SimpleLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/SimpleLayout.cs -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/SimpleLayout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/SimpleLayout.resx -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/Wrench.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/Wrench.ico -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/app.manifest -------------------------------------------------------------------------------- /WinForms-HDPI/PerMonitorAware/wfc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/PerMonitorAware/wfc.ico -------------------------------------------------------------------------------- /WinForms-HDPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/README.md -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/App.config -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/Calendar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/Calendar.Designer.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/Calendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/Calendar.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/Calendar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/Calendar.resx -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/DataGridViewHeadersScaling.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/DataGridViewHeadersScaling.Designer.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/DataGridViewHeadersScaling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/DataGridViewHeadersScaling.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/DataGridViewHeadersScaling.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/DataGridViewHeadersScaling.resx -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/HighDpiDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/HighDpiDemo.csproj -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/HighDpiDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/HighDpiDemo.sln -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/HighDpiDemo_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/HighDpiDemo_TemporaryKey.pfx -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/MainForm.Designer.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/MainForm.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/MainForm.resx -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/MenuStripAndCheckedListBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/MenuStripAndCheckedListBox.Designer.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/MenuStripAndCheckedListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/MenuStripAndCheckedListBox.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/MenuStripAndCheckedListBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/MenuStripAndCheckedListBox.resx -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/MultipleScalingPasses.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/MultipleScalingPasses.Designer.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/MultipleScalingPasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/MultipleScalingPasses.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/MultipleScalingPasses.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/MultipleScalingPasses.resx -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/Program.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/Properties/Resources.resx -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/Properties/Settings.settings -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/RightAnchor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/RightAnchor.Designer.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/RightAnchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/RightAnchor.cs -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/RightAnchor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/RightAnchor.resx -------------------------------------------------------------------------------- /WinForms-HDPI/SystemAware/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-samples/HEAD/WinForms-HDPI/SystemAware/app.manifest --------------------------------------------------------------------------------