├── .DS_Store ├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── policies │ └── resourceManagement.yml ├── .gitignore ├── Accessibility ├── FetchTimer │ ├── App.config │ ├── FetchTimer.csproj │ ├── FetchTimerForm.cs │ ├── FetchTimerForm.designer.cs │ ├── FetchTimerForm.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── uiautomationfetcher.cs ├── FindText │ ├── FindText │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── FindText.csproj │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── content │ │ │ ├── flowdocumentsample1.xaml │ │ │ ├── flowdocumentsample2.xaml │ │ │ ├── flowdocumentsample3.xaml │ │ │ ├── solarsystem.bmp │ │ │ ├── text.rtf │ │ │ └── text.txt │ ├── FindTextClient │ │ ├── FindText.cs │ │ ├── FindTextClient.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── SearchWindow.cs │ └── README.md ├── FocusTracker │ ├── App.config │ ├── FocusTracker.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ └── Tracker.cs ├── Highlighter │ ├── App.config │ ├── ClientForm.cs │ ├── ClientForm.designer.cs │ ├── ClientForm.resx │ ├── HighlightRectangle.cs │ ├── Highlighter.csproj │ ├── NativeMethods.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── InsertText │ ├── App.config │ ├── InsertTextClient │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── InsertTextClient.csproj │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── UnmanagedClass.cs │ ├── InsertTextTarget │ │ ├── App.config │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── InsertTextTarget.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Target.cs │ │ └── form1.resx │ └── README.md ├── InvokePattern │ ├── InvokePatternApp │ │ ├── InvokePatternApp.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── invokepatternapp.cs │ │ └── security.xml │ ├── README.md │ └── Target │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Target.csproj │ │ └── data │ │ ├── cat.png │ │ ├── dog.png │ │ └── fish.png ├── SelectionPattern │ ├── README.md │ ├── SelectionPatternSample │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── SelectionPatternSample.csproj │ │ └── TargetHandler.cs │ └── SelectionTarget │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── SelectionTarget.csproj │ │ ├── Target.cs │ │ ├── Target.designer.cs │ │ └── Target.resx └── WindowMove │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ ├── WindowMove.cs │ ├── WindowMove.csproj │ └── security.xml ├── Animation ├── AnimationExamples │ ├── 3d │ │ ├── ControlLableRotatingCubeExample.xaml │ │ ├── ControllableRotatingCubeExample.cs │ │ ├── RotatingCubeExample.cs │ │ └── RotatingCubeExample.xaml │ ├── AnimatingAlongAPathExample.cs │ ├── AnimatingAlongAPathExample.xaml │ ├── AnimationExamples.csproj │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── BackDoubleAnimation.cs │ ├── BounceDoubleAnimation.cs │ ├── CircleAnimation.cs │ ├── ElasticDoubleAnimation.cs │ ├── ExponentialDoubleAnimation.cs │ ├── KeyFrames │ │ ├── SplineExample.cs │ │ └── SplineExample.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── SampleViewer.cs │ ├── SampleViewer.xaml │ ├── Text │ │ ├── AnimatedParagraphExample.cs │ │ ├── AnimatedParagraphExample.xaml │ │ ├── SkewTextAnimationExample.cs │ │ ├── SkewTextAnimationExample.xaml │ │ ├── TextAnimationExample.cs │ │ ├── TextAnimationExample.xaml │ │ ├── TranslateTextAnimationExample.cs │ │ └── TranslateTextAnimationExample.xaml │ ├── TimingBehaviors │ │ ├── AnimationTransitionType.cs │ │ ├── InteractiveAnimationsExample.cs │ │ └── InteractiveAnimationsExample.xaml │ └── sample_images │ │ ├── berries.jpg │ │ ├── branches.png │ │ ├── leafpicturecube2r000003.png │ │ ├── leafpicturecube2r000005.png │ │ ├── leaves_closeup.png │ │ ├── rippled_metal_smaller.png │ │ ├── rocks.jpg │ │ ├── rocks.png │ │ ├── sunset.jpg │ │ ├── waterlilies.jpg │ │ └── waterlilies.png ├── AnimationTiming │ ├── AccelDecelExample.cs │ ├── AccelDecelExample.xaml │ ├── AnimationTiming.csproj │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── AutoReverseExample.cs │ ├── AutoReverseExample.xaml │ ├── BeginTimeExample.cs │ ├── BeginTimeExample.xaml │ ├── DataboundSliderAnimationExample.xaml │ ├── ElapsedTimeControl.cs │ ├── FillBehaviorExample.cs │ ├── FillBehaviorExample.xaml │ ├── HandoffVersusComposeExample.xaml │ ├── IsAdditiveExample.cs │ ├── IsAdditiveExample.xaml │ ├── IsCumulativeExample.cs │ ├── IsCumulativeExample.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── RepeatBehaviorExample.cs │ ├── RepeatBehaviorExample.xaml │ ├── SampleViewer.cs │ ├── SampleViewer.xaml │ ├── SpeedExample.cs │ └── SpeedExample.xaml ├── CustomAnimation │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── BackDoubleAnimation.cs │ ├── BounceDoubleAnimation.cs │ ├── CircleAnimation.cs │ ├── CustomAnimation.csproj │ ├── CustomAnimationExample.cs │ ├── CustomAnimationExample.xaml │ ├── ElasticDoubleAnimation.cs │ ├── ExponentialDoubleAnimation.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── KeyFrameAnimation │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── BooleanAnimationUsingKeyFramesExample.xaml │ ├── ColorAnimationUsingKeyFramesExample.xaml │ ├── DoubleAnimationUsingKeyFramesExample.xaml │ ├── InterpolationMethodsExample.xaml │ ├── KeyFrameAnimation.csproj │ ├── KeyFramesIntroduction.cs │ ├── KeyFramesIntroduction.xaml │ ├── KeytimesExample.xaml │ ├── PointAnimationUsingKeyFramesExample.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── RectAnimationUsingKeyFramesExample.xaml │ ├── SampleViewer.cs │ ├── SampleViewer.xaml │ ├── StringAnimationUsingKeyFramesExample.xaml │ └── ThicknessAnimationUsingKeyFramesExample.xaml ├── KeySplineAnimations │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── KeySplineAnimations.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── SplineExample.cs │ ├── SplineExample.xaml │ └── sample_images │ │ ├── berries.jpg │ │ ├── branches.png │ │ ├── leafpicturecube2r000003.png │ │ ├── leafpicturecube2r000005.png │ │ ├── leaves_closeup.png │ │ ├── rippled_metal_smaller.png │ │ ├── rocks.jpg │ │ ├── rocks.png │ │ ├── sunset.jpg │ │ ├── waterlilies.jpg │ │ └── waterlilies.png ├── LocalAnimations │ ├── App.config │ ├── App.cs │ ├── EntryClass.cs │ ├── InteractiveAnimationExample.cs │ ├── LocalAnimationExample.cs │ ├── LocalAnimations.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── SampleViewer.cs ├── OpacityAnimation │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── OpacityAnimation.csproj │ ├── OpacityAnimationExample.cs │ ├── OpacityAnimationExample.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── sampleimages │ │ └── berries.jpg ├── PathAnimations │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DoubleAnimationUsingPathExample.xaml │ ├── MatrixAnimationUsingPathExample.xaml │ ├── PathAnimations.csproj │ ├── PointAnimationUsingPathExample.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── RotateAnimationUsingPathExample.xaml │ ├── SampleViewer.cs │ └── SampleViewer.xaml ├── Per-FrameAnimation │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Follow │ │ ├── FollowExample.cs │ │ └── FollowExample.xaml │ ├── FrameIndependentFollow │ │ ├── FrameIndependentFollowExample.cs │ │ └── FrameIndependentFollowExample.xaml │ ├── ParticleEffects │ │ ├── FireworkEffect.cs │ │ ├── MagnitismCanvas.cs │ │ ├── OverlayRenderDecorator.cs │ │ ├── OverlayRenderDecoratorOverlayVisual.cs │ │ ├── Particle.cs │ │ ├── ParticleEffectExamples.cs │ │ ├── ParticleEffectExamples.xaml │ │ ├── ParticleEffectsTimeTracker.cs │ │ └── SonicEffect.cs │ ├── Per-FrameAnimation.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── ReusableFollow │ │ ├── FollowMouseCanvas.cs │ │ ├── ReusableFollowExample.xaml │ │ ├── ReusableFollowExample.xaml.cs │ │ └── ReusableFollowTracker.cs │ ├── SampleViewer.cs │ ├── SampleViewer.xaml │ └── Simple │ │ ├── SimpleExample.cs │ │ └── SimpleExample.xaml ├── PropertyAnimation │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ControlTemplateStoryboardExample.xaml │ ├── DataTriggerStoryboardExample.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── PropertyAnimation.csproj │ ├── PropertyTriggerExample.xaml │ ├── README.md │ ├── SampleViewer.xaml │ ├── StoryboardExample.cs │ ├── StoryboardExample.xaml │ └── StyleStoryboardExample.xaml └── TargetValues │ ├── AnimationTargetValuesExample.xaml │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ └── TargetValues.csproj ├── Application Management ├── ApplicationManagement.sln ├── ApplicationShutdown │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ApplicationShutdown.csproj │ ├── ChildWindow.cs │ ├── ChildWindow.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── CodeOnlyWindowsApplication │ ├── App.config │ ├── App.cs │ ├── CodeOnlyWindowsApplication.csproj │ ├── EntryPoint.cs │ ├── MainWindow.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── CustomApplication │ ├── CustomApplicationClass │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── CustomApplicationClass.csproj │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── CustomApplicationClient │ │ ├── CustomApplication.cs │ │ ├── CustomApplicationClient.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── README.md ├── ExceptionHandlingSecondaryUIThread │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ExceptionHandlingSecondaryUIThread.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── SecondaryUIThreadWindow.cs │ └── SecondaryUIThreadWindow.xaml ├── ExceptionHandlingSecondaryWorkerThread │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ExceptionHandlingSecondaryWorkerThread.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── ProcessingCommandLineArguments │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── ProcessingCommandLineArguments.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── SingleInstanceDetection │ ├── App.config │ ├── EntryPoint.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── SingleInstanceApplication.cs │ ├── SingleInstanceDetection.csproj │ └── SingleInstanceManager.cs ├── SkinnedApplication │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── BlueSkin.xaml │ ├── ChildWindow.cs │ ├── ChildWindow.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── SkinnedApplication.csproj │ └── YellowSkin.xaml └── UnhandledExceptionHandling │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ └── UnhandledExceptionHandling.csproj ├── CODEOWNERS ├── Clipboard ├── ClipboardSpy │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ClipboardSpy.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md └── ClipboardViewer │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ClipboardViewer.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── README.md ├── Compatibility ├── App.config ├── App.xaml ├── App.xaml.cs ├── AppCompat-Quirks.csproj ├── AppContextInformation.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── README.md ├── app.manifest ├── images │ └── screenshot.png └── runtimeconfig.template.json ├── Data Binding ├── ADODataSet │ ├── ADODataSet.csproj │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── IntColorConverter.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── bookdata.mdb │ ├── copydata.cmd │ └── readme.txt ├── BindConversion │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── BindConversion.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MyConverter.cs │ ├── MyData.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── BindValidation │ ├── AgeRangeRule.cs │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── BindValidation.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MyDataSource.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── BindingDPToDP │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── BindingDPToDP.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── BindingToMethod │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── BindingToMethod.csproj │ ├── DoubleToString.cs │ ├── InvalidCharacteRrule.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── TempType.cs │ └── TemperatureScale.cs ├── BusinessLayerValidation │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── BusinessLayerValidation.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Person.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── CodeOnlyBinding │ ├── App.config │ ├── CodeOnlyBinding.csproj │ ├── MainEntry.cs │ ├── MyApp.cs │ ├── MyData.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── CollectionBinding │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── CollectionBinding.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── People.cs │ ├── Person.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── CollectionViewSource │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── CollectionViewSource.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Place.cs │ ├── Places.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── Colors │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ByteToDoubleConverter.cs │ ├── ColorItem.cs │ ├── ColorItemList.cs │ ├── Colors.csproj │ ├── DoubleToStringConverter.cs │ ├── LuminanceToBrushConverter.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── SourceToBoolConverter.cs ├── CompositeCollections │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── CompositeCollections.csproj │ ├── GreekGod.cs │ ├── GreekGods.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── DataBindingToStringFomat │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── BindingToStringFomat.csproj │ ├── ItemsForSale.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── PurchaseItem.cs │ └── README.md ├── DataTemplatingIntro │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DataTemplatingIntro.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── Task.cs │ ├── TaskListDataTemplateSelector.cs │ ├── TaskType.cs │ └── Tasks.cs ├── DataTrigger │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DataTrigger.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Place.cs │ ├── Places.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── DirectionalBinding │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DirectionalBinding.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── NetIncome.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── EditingCollections │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ChangeItem.cs │ ├── ChangeItem.xaml │ ├── EditingCollections.csproj │ ├── ItemsForSale.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── PurchaseItem.cs │ └── README.md ├── Grouping │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Grouping.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── HierarchicalDataTemplate │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Division.cs │ ├── HierarchicalDataTemplate.csproj │ ├── League.cs │ ├── ListLeagueList.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── Team.cs ├── Linq │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Linq.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── Task.cs │ ├── TaskType.cs │ └── Tasks.cs ├── MasterDetail │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Division.cs │ ├── DivisionList.cs │ ├── League.cs │ ├── LeagueList.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MasterDetail.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── Team.cs │ └── TeamList.cs ├── MasterDetailXml │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Data │ │ └── leagues.xml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MasterDetailXml.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── MultiBinding │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MultiBinding.csproj │ ├── NameConverter.cs │ ├── NameList.cs │ ├── PersonName.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── PriorityBinding │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── AsyncDataSource.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── PriorityBinding.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── PropertyChangeNotification │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Bid.cs │ ├── BidCollection.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── PropertyChangeNotification.csproj │ └── README.md ├── SimpleBinding │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Person.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── SimpleBinding.csproj ├── SortFilter │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Order.cs │ ├── Orders.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── SortFilter.csproj ├── UpdateSource │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── UpdateSource.csproj │ └── UserProfile.cs ├── ValidateItemSample │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── FutureDateRule.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── PriceIsAPositiveNumber.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── PurchaseItem.cs │ ├── README.md │ ├── ValidateDateAndPrice.cs │ └── ValidateItemSample.csproj ├── ValidateItemsInItemsControl │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── AreasMatch.cs │ ├── Customer.cs │ ├── Customers.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── Region.cs │ ├── Representantives.cs │ ├── ServiceRep.cs │ └── ValidateItemsInItemsControl.csproj ├── XmlDataSource │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── XmlDataSource.csproj └── XmlnsBind │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ └── XmlnsBind.csproj ├── Directory.Build.props ├── Documents ├── Annotations │ ├── AnnotatedDocumentViewer │ │ ├── AnnotatedDocumentViewer.csproj │ │ ├── AnnotationDataConverter.cs │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ └── AnnotationsStyling │ │ ├── AdvancedStyling.xaml │ │ ├── AnnotationsStyling.csproj │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── ResourceEntryToComboItemConverter.cs │ │ ├── StyleMetaData.cs │ │ ├── StylingUsingProperties.xaml │ │ └── defaultstickynotestyle.xaml ├── Fixed Documents │ ├── DocumentMerge │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── DocumentItem.cs │ │ ├── DocumentMerge.csproj │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ ├── PageItem.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── RollupDocument.cs │ │ ├── RollupFixedDocument.cs │ │ ├── RollupFixedPage.cs │ │ └── content │ │ │ ├── chocolate.xps │ │ │ └── officeinhealthcare.xps │ ├── DocumentSerialization │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DocumentSerialization.csproj │ │ ├── GoButton.xaml │ │ ├── HtmlXmlConverter │ │ │ ├── htmlcssparser.cs │ │ │ ├── htmlfromxamlconverter.cs │ │ │ ├── htmllexicalanalyzer.cs │ │ │ ├── htmlparser.cs │ │ │ ├── htmlschema.cs │ │ │ ├── htmltokentype.cs │ │ │ └── htmltoxamlconverter.cs │ │ ├── ImageButton.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── SerializerWriter │ │ │ ├── htmlserializerfactory.cs │ │ │ ├── htmlserializerwriter.cs │ │ │ ├── rtfserializerfactory.cs │ │ │ ├── rtfserializerwriter.cs │ │ │ ├── txtserializerfactory.cs │ │ │ ├── txtserializerwriter.cs │ │ │ ├── xamlserializerfactory.cs │ │ │ └── xamlserializerwriter.cs │ │ ├── ThumbViewer.xaml │ │ ├── ThumbViewer.xaml.cs │ │ ├── ThumbViewerApp.xaml │ │ ├── ThumbViewerApp.xaml.cs │ │ ├── Util.cs │ │ ├── VisibilityToBoolConverter.cs │ │ ├── WordXmlSerialize │ │ │ ├── wordxmlreader.cs │ │ │ ├── wordxmlserializer.cs │ │ │ └── wordxmlwriter.cs │ │ ├── XamlRtfConverter.cs │ │ ├── content │ │ │ └── chocolate │ │ │ │ ├── chocolate.xaml │ │ │ │ └── images │ │ │ │ ├── chocolate.png │ │ │ │ └── truffle.png │ │ └── images │ │ │ ├── fileopen.png │ │ │ ├── filesave.png │ │ │ └── print.png │ └── DocumentStructure │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── DocumentStructure.csproj │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── content │ │ ├── fixedpage1_structure.xaml │ │ ├── fixedpage2_structure.xaml │ │ ├── spec_wiithstructure.xps │ │ └── spec_withoutstructure.xps │ │ ├── spec_withoutstructure-xps │ │ ├── [content_types].xml │ │ ├── _rels │ │ │ └── .rels │ │ ├── documents │ │ │ └── fixeddocument_1.fdoc │ │ ├── fixeddocumentsequence.fdseq │ │ ├── pages │ │ │ ├── _rels │ │ │ │ ├── fixedpage_1.fpage.rels │ │ │ │ └── fixedpage_2.fpage.rels │ │ │ ├── fixedpage_1.fpage │ │ │ └── fixedpage_2.fpage │ │ └── resources │ │ │ ├── fonts │ │ │ ├── 33c063c8-1259-4322-acc8-8fc1964cc064.odttf │ │ │ ├── 3b85141b-0969-4d9e-b9c8-e705bb7e6543.odttf │ │ │ ├── 3f87ce81-fb61-4ea7-8d62-aed569d1b895.odttf │ │ │ ├── 64326a24-1829-4393-8602-67e5b520db43.odttf │ │ │ └── 9aa4ea89-755c-4331-be84-0cd43ff87195.odttf │ │ │ └── images │ │ │ ├── image_1.png │ │ │ ├── image_2.png │ │ │ ├── image_3.png │ │ │ ├── image_4.png │ │ │ └── image_5.png │ │ └── spec_withstructure-xps │ │ ├── [content_types].xml │ │ ├── _rels │ │ └── .rels │ │ ├── documents │ │ ├── 0 │ │ │ └── structure │ │ │ │ └── fragments │ │ │ │ ├── 1.frag │ │ │ │ └── 2.frag │ │ └── fixeddocument_1.fdoc │ │ ├── fixeddocumentsequence.fdseq │ │ ├── pages │ │ ├── _rels │ │ │ ├── fixedpage_1.fpage.rels │ │ │ └── fixedpage_2.fpage.rels │ │ ├── fixedpage_1.fpage │ │ └── fixedpage_2.fpage │ │ └── resources │ │ ├── fonts │ │ ├── 33c063c8-1259-4322-acc8-8fc1964cc064.odttf │ │ ├── 3b85141b-0969-4d9e-b9c8-e705bb7e6543.odttf │ │ ├── 3f87ce81-fb61-4ea7-8d62-aed569d1b895.odttf │ │ ├── 64326a24-1829-4393-8602-67e5b520db43.odttf │ │ └── 9aa4ea89-755c-4331-be84-0cd43ff87195.odttf │ │ └── images │ │ ├── image_1.png │ │ ├── image_2.png │ │ ├── image_3.png │ │ ├── image_4.png │ │ └── image_5.png ├── Flow Content │ ├── FlowContentElements │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── FlowContentElements.csproj │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── FlowContentProperty │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── FlowContentProperty.csproj │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── FlowDocumentNewsClient │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── DockPanel1.cs │ │ ├── DockPanel2.cs │ │ ├── DockPanel3.cs │ │ ├── Document.xaml │ │ ├── Document1.xaml │ │ ├── Document2.xaml │ │ ├── FlowDocumentNewsClient.csproj │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── images │ │ │ ├── smiley.png │ │ │ ├── story1.png │ │ │ ├── story2.png │ │ │ ├── story3.png │ │ │ └── tulip_farm.png │ ├── FlowDocumentProperties │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── FlowDocumentProperties.csproj │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── FontProperties │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── FontProperties.csproj │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── ParagraphAndHyphenation │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ ├── ParagraphAndHyphenation.csproj │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── TableBuilder │ │ ├── App.config │ │ ├── EntryClass.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── TableBuilder.csproj │ │ └── app.cs │ ├── TableRows │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── TableRows.csproj │ ├── TabularData │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── TabularData.csproj │ └── TextWrapProperty │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── TextWrapProperty.csproj └── Spell Checking │ ├── CustomDictionaries │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── CustomDictionaries.csproj │ ├── CustomDictionary.lex │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── README.md │ └── SpellChecking │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── README.md │ └── SpellChecking.csproj ├── Drag and Drop ├── DragDropDataFormats │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DragDropDataFormats.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── DragDropEvents │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DragDropEvents.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── DragDropObjects │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DragDropObjects.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── SimpleCircleAdorner.cs ├── DragDropOpenTextFile │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DragDropOpenTextFile.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── DragDropTextOps │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DragDropTextOps.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md └── DragDropThumbOps │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DragDropThumbOps.csproj │ ├── MainWindow.xaml │ ├── Pane.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── README.md ├── Element Tree ├── OverridingLogicalTree │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── OverridingLogicalTree.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── SingletonPanel.cs └── SearchingForElement │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ └── SearchingForElement.csproj ├── Elements ├── ContextMenuOpening │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ContextMenuOpening.csproj │ ├── MyButton.cs │ ├── Pane.cs │ ├── Pane.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── FindingElementInPanel │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── FindingElementInPanel.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── FocusVisualStyle │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── FocusVisualStyle.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── HeightProperties │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── HeightProperties.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── LoadedEvent │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── LoadedEvent.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── SettingMargins │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── SettingMargins.csproj ├── ThicknessConverter │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── ThicknessConverter.csproj ├── UsingElements │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── UsingElements.csproj ├── VisibiltyChanges │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── VisibiltyChanges.csproj └── WidthProperties │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ └── WidthProperties.csproj ├── Events ├── AddingEventHandler │ ├── AddingEventHandler.csproj │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── CustomRoutedEvents │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── CustomRoutedEvents.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MyButtonSimple.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── FindingSourceElement │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── FindingSourceElement.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md └── RoutedEventHandling │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ └── RoutedEventHandling.csproj ├── Getting Started ├── ComplexLayout │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ComplexLayout.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── WPF_ComplexLayout_Resultant_UI.png ├── Concepts │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Concepts.csproj │ ├── Default.xaml │ ├── Default.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── TOC.xaml │ ├── Welcome.xaml │ ├── images │ │ ├── berries.jpg │ │ ├── cat.png │ │ ├── cherries.jpg │ │ ├── dog.png │ │ ├── downarrow.png │ │ ├── fish.png │ │ ├── flower.jpg │ │ ├── help.gif │ │ ├── pinkcherries.jpg │ │ ├── steel.png │ │ ├── tulip_farm.jpg │ │ ├── uparrow.png │ │ └── waterlilies.jpg │ ├── samps │ │ ├── actualwidth_samp.xaml │ │ ├── actualwidth_samp.xaml.cs │ │ ├── animateheight_samp.xaml │ │ ├── animateheight_samp.xaml.cs │ │ ├── animatepath_samp.xaml │ │ ├── animatepath_samp.xaml.cs │ │ ├── animatepropertystoryboards_samp.xaml │ │ ├── animatepropertystoryboards_samp.xaml.cs │ │ ├── animaterotate_samp.xaml │ │ ├── animaterotate_samp.xaml.cs │ │ ├── animatesize_samp.xaml │ │ ├── animatesize_samp.xaml.cs │ │ ├── binddptodp_samp.xaml │ │ ├── binddptodp_samp.xaml.cs │ │ ├── bindnontextproperty_samp.xaml │ │ ├── bindnontextproperty_samp.xaml.cs │ │ ├── border_samp.xaml │ │ ├── border_samp.xaml.cs │ │ ├── brushtypes_samp.xaml │ │ ├── brushtypes_samp.xaml.cs │ │ ├── btncolor_samp.xaml │ │ ├── btncolor_samp.xaml.cs │ │ ├── button_samp.xaml │ │ ├── button_samp.xaml.cs │ │ ├── canvas_samp.xaml │ │ ├── canvas_samp.xaml.cs │ │ ├── checkboxelement_samp.xaml │ │ ├── checkboxelement_samp.xaml.cs │ │ ├── compositecollections_samp.xaml │ │ ├── compositecollections_samp.xaml.cs │ │ ├── contextmenu_samp.xaml │ │ ├── contextmenu_samp.xaml.cs │ │ ├── controlprops_samp.xaml │ │ ├── controlprops_samp.xaml.cs │ │ ├── datatrigger_samp.xaml │ │ ├── datatrigger_samp.xaml.cs │ │ ├── dockpanel_samp.xaml │ │ ├── dockpanel_samp.xaml.cs │ │ ├── documentviewer_samp.xaml │ │ ├── documentviewer_samp.xaml.cs │ │ ├── doublekeyframe_samp.xaml │ │ ├── doublekeyframe_samp.xaml.cs │ │ ├── expander_samp.xaml │ │ ├── expander_samp.xaml.cs │ │ ├── geometryusage_samp.xaml │ │ ├── geometryusage_samp.xaml.cs │ │ ├── gradientspread_samp.xaml │ │ ├── gradientspread_samp.xaml.cs │ │ ├── grid_samp.xaml │ │ ├── grid_samp.xaml.cs │ │ ├── interpolationmethods_samp.xaml │ │ ├── interpolationmethods_samp.xaml.cs │ │ ├── keyframestring_samp.xaml │ │ ├── keyframestring_samp.xaml.cs │ │ ├── linejoinsandcaps_samp.xaml │ │ ├── linejoinsandcaps_samp.xaml.cs │ │ ├── listboxstyle_samp.xaml │ │ ├── listboxstyle_samp.xaml.cs │ │ ├── menus_samp.xaml │ │ ├── menus_samp.xaml.cs │ │ ├── miterlimit_samp.xaml │ │ ├── miterlimit_samp.xaml.cs │ │ ├── multibinding_samp.xaml │ │ ├── multibinding_samp.xaml.cs │ │ ├── opacityanimation_samp.xaml │ │ ├── opacityanimation_samp.xaml.cs │ │ ├── prioritybinding_samp.xaml │ │ ├── prioritybinding_samp.xaml.cs │ │ ├── propertychangenotification_samp.xaml │ │ ├── propertychangenotification_samp.xaml.cs │ │ ├── scrollviewer_samp.xaml │ │ ├── scrollviewer_samp.xaml.cs │ │ ├── slider_samp.xaml │ │ ├── slider_samp.xaml.cs │ │ ├── stackpanel_samp.xaml │ │ ├── stackpanel_samp.xaml.cs │ │ ├── stretch_samp.xaml │ │ ├── stretch_samp.xaml.cs │ │ ├── tabcontrol_samp.xaml │ │ ├── tabcontrol_samp.xaml.cs │ │ ├── table_samp.xaml │ │ ├── table_samp.xaml.cs │ │ ├── textblock_samp.xaml │ │ ├── textblock_samp.xaml.cs │ │ ├── thumb_samp.xaml │ │ ├── thumb_samp.xaml.cs │ │ ├── tooltip_samp.xaml │ │ ├── tooltip_samp.xaml.cs │ │ ├── viewbox_samp.xaml │ │ ├── viewbox_samp.xaml.cs │ │ ├── xmldatasource_samp.xaml │ │ ├── xmldatasource_samp.xaml.cs │ │ ├── xmlnsbind_samp.xaml │ │ └── xmlnsbind_samp.xaml.cs │ └── welcome.xaml.cs ├── ControlsAndLayout │ ├── ControlsAndLayout │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── ControlsAndLayout.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Scene.xaml │ │ ├── Scene.xaml.cs │ │ ├── images │ │ │ └── tulip_farm.jpg │ │ └── samples.xml │ └── README.md ├── DynamicLayout │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DynamicLayout.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── GettingStarted.sln ├── HelloWorld │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── HelloWorld.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── app.ico ├── MultiPage │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MultiPage.csproj │ ├── Page1.xaml │ ├── Page2.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── SimpleLayout │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── SimpleLayout.csproj └── WalkthroughFirstWPFApp │ ├── README.md │ ├── Walkthrough-finished-UI-example.png │ ├── csharp │ ├── App.xaml │ ├── App.xaml.cs │ ├── ExpenseItHome.xaml │ ├── ExpenseItHome.xaml.cs │ ├── ExpenseItIntro.csproj │ ├── ExpenseItIntro.sln │ ├── ExpenseReportPage.xaml │ ├── ExpenseReportPage.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── NavigationWindowKeyboardAccessibleStyle.xaml │ ├── README.md │ ├── Styles.xaml │ └── watermark.png │ └── vb │ ├── Application.xaml │ ├── Application.xaml.vb │ ├── ExpenseItHome.xaml │ ├── ExpenseItHome.xaml.vb │ ├── ExpenseItIntro2.sln │ ├── ExpenseItIntro2.vbproj │ ├── ExpenseReportPage.xaml │ ├── ExpenseReportPage.xaml.vb │ ├── MainWindow.xaml │ ├── MainWindow.xaml.vb │ ├── My Project │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings │ ├── README.md │ ├── Styles.xaml │ └── watermark.png ├── Globalization and Localization ├── BAML Loc │ ├── LocApp │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── LocApp.csproj │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ └── README.md ├── FlowDirection │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── FlowDirection.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── GlobalizationHomepage │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── GlobalizationHomepage.csproj │ ├── HomePage.cs │ ├── HomePage.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── localizedarabicstringtable.csv │ ├── microsoft_logo.png │ └── vista.jpg ├── GlobalizationRunDialog │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── GlobalizationRunDialog.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── localizedgermanstringtable.csv │ └── runicon.jpg ├── Gradient │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Gradient.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── Image │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Image.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── ms_logo.jpg ├── LTRRTL │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── LTRRTL.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── LangAttribute │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── LangAttribute.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── LocalizationResources │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Data │ │ ├── picture1.jpg │ │ └── stringtable.en-us.restext │ ├── LocalizationResources.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── NumbersMultipleLangauges │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── NumbersMultipleLangauges.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── Paths │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Paths.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── RunSpan │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── RunSpan.csproj ├── Span │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── Span.csproj └── StringLocalizationSample │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ ├── StringLocalizationSample.csproj │ └── StringResources.xaml ├── Graphics ├── 2DTransforms │ ├── 2DTransforms.csproj │ ├── AnimatedScaleTransformExample.xaml │ ├── AnimatedSkewTransformExample.xaml │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── InteractiveMatrixTransformExample.cs │ ├── InteractiveMatrixTransformExample.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── RotateTransformExample.xaml │ ├── ScaleTransformExample.xaml │ ├── SkewTransformExample.xaml │ ├── TransformCollectionExample.xaml │ ├── TransformExample.xaml │ └── TranslateTransformExample.xaml ├── AITCodec │ ├── README.md │ ├── cpp │ │ ├── aitcodec.def │ │ ├── aitcodec.sln │ │ ├── aitcodec.vcproj │ │ ├── aitcodec.vcxproj │ │ ├── aitcodec.vcxproj.filters │ │ ├── aitcodecregistrymanager.h │ │ ├── aitdecoder.cpp │ │ ├── aitdecoder.h │ │ ├── aitencoder.cpp │ │ ├── aitencoder.h │ │ ├── basedecoder.cpp │ │ ├── basedecoder.h │ │ ├── baseencoder.cpp │ │ ├── baseencoder.h │ │ ├── basepixelformatconverter.cpp │ │ ├── basepixelformatconverter.h │ │ ├── classfactory.h │ │ ├── cmykpixelformatconverter.cpp │ │ ├── cmykpixelformatconverter.h │ │ ├── main.cpp │ │ ├── precomp.hpp │ │ ├── readme.html │ │ ├── registryvaluemanager.h │ │ ├── unknownimpl.h │ │ ├── utility.cpp │ │ ├── utility.h │ │ ├── ycbcrpixelformatconverter.cpp │ │ └── ycbcrpixelformatconverter.h │ └── readme.htm ├── BMPEncoderAndDecoder │ ├── App.config │ ├── App.cs │ ├── BMPEncoderAndDecoder.csproj │ ├── EntryClass.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── tulipfarm.bmp ├── BitmapEffectsGallery │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── BevelAnimationExample.xaml │ ├── BevelInteractiveExample.cs │ ├── BevelInteractiveExample.xaml │ ├── BevelsImpleExample.xaml │ ├── BitmapEffectInputExample.xaml │ ├── BitmapEffectsGallery.csproj │ ├── BlurAnimationExample.xaml │ ├── BlurInteractiveExample.cs │ ├── BlurInteractiveExample.xaml │ ├── BlursImpleExample.xaml │ ├── DropShadowAnimationExample.xaml │ ├── DropShadowInteractiveExample.xaml │ ├── DropShadowsImpleExample.xaml │ ├── EmbossAnimationExample.xaml │ ├── EmbossInteractiveExample.xaml │ ├── EmbosssImpleExample.xaml │ ├── MultipleEffectAnimationExample.xaml │ ├── MultipleEffectExample.xaml │ ├── OuterGlowAnimationExample.xaml │ ├── OuterGlowInteractiveExample.xaml │ ├── OuterGlowSimpleExample.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── SampleViewer.cs │ ├── SampleViewer.xaml │ └── images │ │ └── waterlilies.jpg ├── BitmapMetadata │ ├── App.config │ ├── App.cs │ ├── BitmapMetadata.csproj │ ├── EntryClass.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── smiley.png ├── Brushes │ ├── AnimatingSolidColorBrushExample.xaml │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── BrushOpacityExample.xaml │ ├── BrushTransformExample.xaml │ ├── BrushTypesExample.xaml │ ├── Brushes.csproj │ ├── DashExample.xaml │ ├── DoubleToStringConverter.cs │ ├── EnumPossibleValuesToStringArrayConverter.cs │ ├── GradientBrushesExample.cs │ ├── GradientBrushesExample.xaml │ ├── GradientSpreadExample.xaml │ ├── InteractiveLinearGradientBrushExample.cs │ ├── InteractiveLinearGradientBrushExample.xaml │ ├── LinearGradientBrushAnimationExample.xaml │ ├── PointToStringConverter.cs │ ├── PredefinedBrushes.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── RadialGradientBrushAnimationExample.xaml │ ├── RadialGradientBrushExample.xaml │ ├── SampleViewer.cs │ ├── SampleViewer.xaml │ ├── SolidcolorBrushSyntax.xaml │ ├── sampleimages │ │ ├── cherries.jpg │ │ ├── clouds.png │ │ ├── pinkcherries.jpg │ │ ├── steel.png │ │ └── sunset.jpg │ ├── samplemedia │ │ └── xbox.wmv │ └── sampleresources │ │ └── toc.xml ├── ClipRegion │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ClipExample.xaml │ ├── ClipRegion.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── sampleimages │ │ ├── scissors.jpg │ │ └── waterlilies.jpg ├── Converter │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Converter.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── CustomBitmapEffect │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── CustomBitmapEffect.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── DrawingBrush │ ├── AnimateGeometryDrawingExample.cs │ ├── AnimateGeometryDrawingExample.xaml │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DrawingBrush.csproj │ ├── DrawingBrushExample.cs │ ├── DrawingBrushExample.xaml │ ├── ImageBrushExample.cs │ ├── ImageDrawingExample.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── SampleViewer.cs │ ├── SampleViewer.xaml │ ├── TransformExample.cs │ ├── TransformExample.xaml │ └── sampleimages │ │ ├── apple.jpg │ │ ├── cherries.jpg │ │ ├── rippled_metal_smaller.png │ │ ├── sailboat.jpg │ │ └── waterlilies.jpg ├── GIFEncoderAndDecoder │ ├── App.config │ ├── App.cs │ ├── EntryClass.cs │ ├── GIFEncoderAndDecoder.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── tulipfarm.gif ├── Geometries │ ├── App.config │ └── README.md ├── Geometry │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── CombiningGeometriesExample.cs │ ├── CombiningGeometriesExample.xaml │ ├── Geometry.csproj │ ├── GeometryAttributeSyntaxExample.cs │ ├── GeometryAttributeSyntaxExample.xaml │ ├── GeometryUsageExample.cs │ ├── GeometryUsageExample.xaml │ ├── PathGeometryExample.cs │ ├── PathGeometryExample.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── SampleViewer.cs │ ├── SampleViewer.xaml │ ├── ShapeGeometriesExample.cs │ ├── ShapeGeometriesExample.xaml │ └── sampleimages │ │ ├── bluetexture.png │ │ └── waterlilies.jpg ├── ImageBrush │ ├── AlignmentExample.cs │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ImageBrush.csproj │ ├── InteractiveExample.cs │ ├── InteractiveExample.xaml │ ├── PaintingWithImages.cs │ ├── PaintingWithImages.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── SampleViewer.cs │ ├── SampleViewer.xaml │ ├── StretchModes.cs │ ├── StretchModes.xaml │ ├── TextFillsExample.cs │ ├── TextfillsExample.xaml │ ├── TileSizeExample.cs │ ├── TileSizeExample.xaml │ ├── TilingExample.cs │ ├── TilingExample.xaml │ ├── alignmentexample.xaml │ └── sampleimages │ │ ├── apple.jpg │ │ ├── bananas.jpg │ │ ├── bananas_small.jpg │ │ ├── berries.jpg │ │ ├── blueberries.jpg │ │ ├── butterfly.jpg │ │ ├── butterfly2.jpg │ │ ├── butterfly2_small.jpg │ │ ├── cherries.jpg │ │ ├── cherries_larger.jpg │ │ ├── gecko.jpg │ │ ├── greenglass.jpg │ │ ├── hummingbird.jpg │ │ ├── music.jpg │ │ ├── pinkcherries.jpg │ │ ├── purpleblock.jpg │ │ ├── rocks.jpg │ │ ├── square.jpg │ │ ├── sunset.jpg │ │ ├── triangle.jpg │ │ ├── tulips.jpg │ │ ├── waterlilies.jpg │ │ └── watermelon.jpg ├── ImageView │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ImageView.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── mydata │ │ ├── blue hills.jpg │ │ ├── sunset.jpg │ │ ├── water lilies.jpg │ │ └── winter.jpg ├── JPEGEncoderAndDecoder │ ├── App.config │ ├── App.cs │ ├── EntryClass.cs │ ├── JPEGEncoderAndDecoder.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── tulipfarm.jpg ├── Matrix │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Matrix.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── OpacityMasking │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DrawingBrushExample.xaml │ ├── GradientBrushExample.xaml │ ├── ImageBrushExample.xaml │ ├── OpacityMasking.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── SampleViewer.xaml │ └── sampleimages │ │ ├── tornedges.png │ │ └── waterlilies.jpg ├── PNGEncoderAndDecoder │ ├── App.config │ ├── App.cs │ ├── EntryClass.cs │ ├── PNGEncoderAndDecoder.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── smiley.png ├── Point │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Point.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── ShapeElements │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── EllipseExample.cs │ ├── EllipseExample.xaml │ ├── FillRuleExample.cs │ ├── FillRuleExample.xaml │ ├── LineCapsAndJoinsExample.cs │ ├── LineExample.cs │ ├── LineExample.xaml │ ├── LinecapsAndJoinsExample.xaml │ ├── MiterLimitExample.cs │ ├── MiterLimitExample.xaml │ ├── PathExample.cs │ ├── PathExample.xaml │ ├── PolyLineExample.xaml │ ├── PolygonExample.cs │ ├── PolygonExample.xaml │ ├── PolylineExample.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── RectangleExample.cs │ ├── RectangleExample.xaml │ ├── SampleViewer.cs │ ├── SampleViewer.xaml │ ├── ShapeElements.csproj │ ├── ShapeTypes.cs │ ├── ShapeTypes.xaml │ ├── StretchExample.cs │ ├── StretchExample.xaml │ └── sampleimages │ │ └── rippled_metal_smaller.png ├── ShapesGallery │ ├── App.config │ ├── EntryClass.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── ShapesGallery.csproj │ └── app.cs ├── SystemBrushesAndColors │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── SystemBrushesAndColors.csproj ├── TIFFEncoderAndDecoder │ ├── App.config │ ├── App.cs │ ├── EntryClass.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── TIFFEncoderAndDecoder.csproj │ └── tulipfarm.tif ├── Vector │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── Vector.csproj ├── VisualBrush │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MagnifyingGlassExample.cs │ ├── MagnifyingGlassExample.xaml │ ├── PaintingWithVisuals.cs │ ├── PaintingWithVisuals.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── ReflectionExample.cs │ ├── ReflectionExample.xaml │ ├── SampleViewer.cs │ ├── SampleViewer.xaml │ ├── VisualBrush.csproj │ ├── sampleimages │ │ ├── apple.jpg │ │ ├── bananas.jpg │ │ ├── bananas_small.jpg │ │ ├── berries.jpg │ │ ├── blueberries.jpg │ │ ├── butterfly.jpg │ │ ├── butterfly2.jpg │ │ ├── butterfly2_small.jpg │ │ ├── cherries.jpg │ │ ├── cherries_larger.jpg │ │ ├── gecko.jpg │ │ ├── greenglass.jpg │ │ ├── hummingbird.jpg │ │ ├── music.jpg │ │ ├── pinkcherries.jpg │ │ ├── purpleblock.jpg │ │ ├── rocks.jpg │ │ ├── square.jpg │ │ ├── sunset.jpg │ │ ├── triangle.jpg │ │ ├── tulips.jpg │ │ ├── waterlilies.jpg │ │ └── watermelon.jpg │ └── samplemedia │ │ └── xbox.wmv └── WDPEncoderAndDecoder │ ├── App.config │ ├── App.cs │ ├── EntryClass.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ ├── WDPEncoderAndDecoder.csproj │ ├── tulipfarm.jpg │ └── tulipfarm.wdp ├── Input and Commands ├── CaptureUnCaptureMouse │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── CaptureUnCaptureMouse.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── CommandSourceControlUsingSystemTimer │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── CommandSourceControlUsingSystemTimer.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── SliderValueConverter.cs ├── CommandSourceControlWithDispatcherTimer │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── CommandSourceControlWithDispatcherTimer.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── SliderValueConverter.cs ├── CursorType │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── CursorType.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── customcursor.cur ├── CustomRoutedCommand │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── CustomRoutedCommand.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── EditingCommands │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── EditingCommands.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── EventOnGainAndLooseFocus │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── EventOnGainAndLooseFocus.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── HandlingEventOnCommand │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── HandlingEventOnCommand.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── HandlingEventOnCommandUsingCode │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── HandlingEventOnCommandUsingCode.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── ICommandSourceImplementation │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── FontDoubleValueConverter.cs │ ├── FontStringValueConverter.cs │ ├── ICommandSourceImplementation.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── commandslider.cs ├── KeyStrokeCounter │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── KeyStrokeCounter.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── KeyboardKey │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── KeyboardKey.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── MousePointer │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MousePointer.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── MouseState │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MouseState.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── MoveObjectWithMouse │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MoveObjectWithMouse.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── ProgrammaticFocusControl │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── ProgrammaticFocusControl.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md └── TouchKeyboard │ ├── TouchKBRegister.sln │ ├── TouchKBRegister │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── LotsOfStacking.xaml │ ├── LotsOfStacking.xaml.cs │ ├── MenuChild.xaml │ ├── MenuChild.xaml.cs │ ├── MenuSibling.xaml │ ├── MenuSibling.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── app.manifest │ ├── SxSDecorators.xaml │ ├── SxSDecorators.xaml.cs │ └── TouchKBRegister.csproj │ └── TouchKeyboardNotifier │ ├── CodeAnalysisDictionary.xml │ ├── InputPaneRcw.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Readme.md │ ├── TouchKeyboardAwareDecorator.cs │ ├── TouchKeyboardEventManager.cs │ └── TouchKeyboardNotifier.csproj ├── LICENSE ├── Migration and Interoperability ├── AxControl │ ├── README.md │ ├── WPMAxLib.csproj │ ├── properties │ │ └── assemblyinfo.cs │ ├── wmpaxcontrol.cs │ ├── wmpaxcontrol.designer.cs │ └── wmpaxcontrol.resx ├── HWNDInWPF │ ├── README.md │ ├── csharp │ │ ├── form1.cs │ │ ├── form1.designer.cs │ │ ├── form1.es-es.resx │ │ ├── form1.resx │ │ ├── localizingwpfinwf.csproj │ │ ├── program.cs │ │ ├── properties │ │ │ ├── assemblyinfo.cs │ │ │ ├── resources.designer.cs │ │ │ ├── resources.resx │ │ │ ├── settings.designer.cs │ │ │ └── settings.settings │ │ ├── simplecontrol.xaml │ │ ├── simplecontrol.xaml.cs │ │ └── simplecontrol0.xaml │ ├── hwndinwpf.sln │ ├── hwndinwpf │ │ ├── Template │ │ │ └── hwndInWPF.vcxprojResolveAssemblyReference.cache │ │ ├── hwndInWPF.vcxproj │ │ ├── hwndinwpf.aps │ │ ├── hwndinwpf.cpp │ │ ├── hwndinwpf.rc │ │ ├── hwndinwpf.vcproj │ │ ├── resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── typicalwin32dialog.ico │ └── wpfapplication1 │ │ ├── app.config │ │ ├── myapp.xaml │ │ ├── myapp.xaml.cs │ │ ├── properties │ │ └── assemblyinfo.cs │ │ ├── window1.xaml │ │ └── wpfapplication1.csproj ├── HostingAxInXaml │ ├── HostingAXinWPFWithXaml.csproj │ ├── README.md │ ├── app.config │ ├── app.xaml │ ├── app.xaml.cs │ ├── properties │ │ ├── assemblyinfo.cs │ │ ├── resources.designer.cs │ │ ├── resources.resx │ │ ├── settings.designer.cs │ │ └── settings.settings │ ├── window1.xaml │ └── window1.xaml.cs ├── HostingWfInWPF │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── HostingWfInWPF.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── HostingWfInWpfWithXaml │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── HostingWfInWpfWithXaml.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── HostingWfWithVisualStyles │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── HostingWfWithVisualStyles.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── HostingWpfUserControlInWf │ ├── ConeControl.xaml │ ├── ConeControl.xaml.cs │ ├── HostingWpfUserControlInWf.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── LocalizingWpfInWf │ ├── App.config │ ├── Form1.designer.cs │ ├── Form1.es-es.resx │ ├── Form1.resx │ ├── LocalizingWpfInWf.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── SimpleControlA.cs │ ├── SimpleControlA.xaml │ ├── SimpleControlB.cs │ ├── SimpleControlB.xaml │ ├── form1.cs │ └── program.cs ├── PropertyMappingWithElementHost │ ├── Form1.cs │ ├── Form1.designer.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── PropertyMappingWithElementHost.csproj │ └── README.md ├── PropertyMappingWithWfh │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── PropertyMappingWithWfh.csproj │ └── README.md ├── WPFHostingWin32Control │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ControlHost.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── WPFHostingWin32Control.csproj ├── WPFUserControlHost │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── WPFUserControlHost.csproj ├── WPFWithWFAndDatabinding │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── WPFWithWFAndDatabinding.csproj │ ├── northwinddataset.designer.cs │ ├── northwinddataset.xsc │ ├── northwinddataset.xsd │ └── northwinddataset.xss ├── Win32Clock │ ├── README.md │ ├── win32clock.sln │ ├── win32clock │ │ ├── resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── win32clock.cpp │ │ ├── win32clock.h │ │ ├── win32clock.ico │ │ ├── win32clock.rc │ │ ├── win32clock.vcproj │ │ └── win32clock.vcxproj │ └── wpfclock │ │ ├── Clock.cs │ │ ├── clock.xaml │ │ └── wpfclock.csproj ├── Win32HostingWPFPage │ ├── README.md │ ├── cpp │ │ ├── resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── win32hostingwpfpage.cpp │ │ ├── win32hostingwpfpage.h │ │ ├── win32hostingwpfpage.ico │ │ ├── win32hostingwpfpage.rc │ │ ├── win32hostingwpfpage.vcproj │ │ ├── win32hostingwpfpage.vcxproj │ │ ├── win32hostingwpfpage.vcxproj.filters │ │ ├── wpfpage.cpp │ │ └── wpfpage.h │ └── readme.htm ├── WindowsFormsHostingWpfControl │ ├── FormsApp │ │ ├── App.config │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── FormsApp.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── form1.resx │ ├── README.md │ └── WPFControls │ │ ├── MyControl.cs │ │ ├── MyControl.xaml │ │ ├── MyControlEventArgs.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── WPFControls.csproj ├── WpfHostingWindowsFormsControl │ ├── FormsControlLibrary │ │ ├── FormsControlLibrary.csproj │ │ ├── MyControl.cs │ │ ├── MyControlEventArgs.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── README.md │ └── WPFApp │ │ ├── App.config │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── WPFApp.csproj └── WpfLayoutHostingWfWithXaml │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ └── WpfLayoutHostingWfWithXaml.csproj ├── NuGet.config ├── PerMonitorDPI ├── FormattedTextExample │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── FormattedTextExample.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── app.manifest ├── ImageScaling │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── DpiAwareImage.cs │ ├── ImageDpiHelper.cs │ ├── ImageScaling.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── app.manifest │ └── images │ │ ├── MSFT_logo.scale-100.png │ │ ├── MSFT_logo.scale-200.png │ │ └── MSFT_logo.scale-400.png ├── TextFormatting │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── CustomTextSource.cs │ ├── FontRendering.cs │ ├── GenericTextProperties.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── TextFormatting.csproj │ └── app.manifest ├── WinFormsHost │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── LoginControl.Designer.cs │ ├── LoginControl.cs │ ├── LoginControl.resx │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── WinFormsHostScaling.csproj │ └── app.manifest └── readme.md ├── Properties ├── Callbacks │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Callbacks.csproj │ ├── Gauge.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── CustomClassesWithDP │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ButtonColors.cs │ ├── CustomClassesWithDP.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── Shirt.cs │ ├── ShirtColors.cs │ └── ShirtTypes.cs └── RestoringDefaultValues │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ └── RestoringDefaultValues.csproj ├── README.md ├── Resources ├── ApplicationResources │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ApplicationResources.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── DefiningResources │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DefiningResources.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md └── MergedResources │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MergedResources.csproj │ ├── MyResourceDictionary1.xaml │ ├── MyResourceDictionary2.xaml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── README.md ├── SECURITY.md ├── Sample Applications ├── .DS_Store ├── CalculatorDemo │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── CalculatorDemo.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MyTextBox.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── appicon.ico ├── ConcentricRingsDemo │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ConcentricRingsDemo.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── CubeAnimationDemo │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── CubeAnimationDemo.csproj │ ├── CubeAnimationDemo.csproj.user │ ├── Images │ │ ├── roundcornersheet.png │ │ └── star.png │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── TrackBall.cs ├── CustomComboBox │ ├── App.xaml │ ├── App.xaml.cs │ ├── Converters │ │ └── StringToStringAndColorConverter.cs │ ├── CustomComboBox.csproj │ ├── DropList.cs │ ├── ExpandableToggleButton.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowViewModel.cs │ ├── Movie.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── Styles.xaml ├── DataBindingDemo │ ├── AddProductWindow.cs │ ├── AddProductWindow.xaml │ ├── App.cs │ ├── App.xaml │ ├── AuctionItem.cs │ ├── Bid.cs │ ├── BooltoVisibilityConvertor.cs │ ├── DataBindingDemo.csproj │ ├── DataBindingDemo.csproj.user │ ├── DateConverter.cs │ ├── FutureDateRule.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── ProductCategory.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── SpecialFeatures.cs │ ├── SpecialFeaturesConverter.cs │ ├── Styles.xaml │ └── User.cs ├── DropShadow │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DropShadow.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── EditingExaminerDemo │ ├── App.cs │ ├── App.xaml │ ├── CommandLine.cs │ ├── EditingExaminerDemo.csproj │ ├── InvokeType.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── ObjectItem.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── ReflectionUtils.cs │ ├── Styles.xaml │ ├── TreeViewhelper.cs │ └── XamlHelper.cs ├── ExpenseIt │ ├── EditBoxControlLibrary │ │ ├── EditBox.cs │ │ ├── EditBoxControlLibrary.csproj │ │ ├── EditboxAdorner.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── Themes │ │ │ └── Generic.xaml │ ├── ExpenseItDemo │ │ ├── App.cs │ │ ├── App.xaml │ │ ├── CreateExpenseReportDialogBox.cs │ │ ├── CreateExpenseReportDialogBox.xaml │ │ ├── ExpenseItDemo.csproj │ │ ├── ExpenseReport.cs │ │ ├── LineItem.cs │ │ ├── LineItemCollection.cs │ │ ├── MainWindow.cs │ │ ├── MainWindow.xaml │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Styles.xaml │ │ ├── Validation │ │ │ ├── EmailValidationrule.cs │ │ │ └── NumberValidationrule.cs │ │ ├── ViewChartWindow.cs │ │ ├── ViewChartWindow.xaml │ │ └── Watermark.png │ └── README.md ├── FontDialog │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── FontChooser.cs │ ├── FontChooser.xaml │ ├── FontDialogDemo.csproj │ ├── FontFamilyListItem.cs │ ├── FontSizeListItem.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── NameDictionaryHelper.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── TypefaceListItem.cs │ └── TypographicFeatureListItem.cs ├── GeometryDesignerDemo │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── GeometryDesignerDemo.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── GraphingCalculatorDemo │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DrawAxisHelper.cs │ ├── GraphingCalculatorDemo.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Parser │ │ ├── AddExpression.cs │ │ ├── BinaryExpression.cs │ │ ├── CannotDifferentiateException.cs │ │ ├── Cone.cs │ │ ├── ConstantExpression.cs │ │ ├── CosineExpression.cs │ │ ├── DivExpression.cs │ │ ├── Ellipsoid.cs │ │ ├── ExpExpression.cs │ │ ├── FunctionMesh.cs │ │ ├── FunctionParser.cs │ │ ├── FunctionParserException.cs │ │ ├── FunctionWireframeModel.cs │ │ ├── Horn.cs │ │ ├── IExpression.cs │ │ ├── InvalidExpressionException.cs │ │ ├── InvalidSyntaxException.cs │ │ ├── MultExpression.cs │ │ ├── NegateExpression.cs │ │ ├── OutOfTokensException.cs │ │ ├── PlaneXY.cs │ │ ├── SineExpression.cs │ │ ├── Sphere.cs │ │ ├── SubExpression.cs │ │ ├── TangentExpression.cs │ │ ├── Token.cs │ │ ├── TokenSet.cs │ │ ├── TokenType.cs │ │ ├── Tokenizer.cs │ │ ├── TrailingTokensException.cs │ │ ├── UnaryExpression.cs │ │ ├── UndefinedVariableException.cs │ │ ├── UnexpectedBehaviorException.cs │ │ └── VariableExpression.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── Settings.cs │ └── TrackBall.cs ├── HexSphereDemo │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── HexSphereDemo.csproj │ ├── Images │ │ ├── roundcornersheet.png │ │ └── star.png │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── TrackBall.cs ├── HtmlToXamlDemo │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── CssStylesheet.cs │ ├── HtmlCSSParser.cs │ ├── HtmlEncodedTextWriter.cs │ ├── HtmlFromXamlConverter.cs │ ├── HtmlLexicalAnalyzer.cs │ ├── HtmlParser.cs │ ├── HtmlSchema.cs │ ├── HtmlToXamlConverter.cs │ ├── HtmlToXamlDemo.csproj │ ├── HtmlTokenType.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── LayoutTransitionsDemo │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── LayoutToLayoutHost.cs │ ├── LayoutToLayoutTarget.cs │ ├── LayoutTransitionsDemo.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── ParticlesDemo │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Particle.cs │ ├── ParticleSystem.cs │ ├── ParticleSystemManager.cs │ ├── ParticlesDemo.csproj │ ├── ParticlesDemo.csproj.user │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── PhotoFlipperDemo │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Images │ │ ├── pic_011.png │ │ ├── pic_012.png │ │ ├── pic_013.png │ │ ├── pic_014.png │ │ ├── pic_015.png │ │ └── pic_016.png │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── PhotoFlipperDemo.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── TrackBall.cs ├── PhotoStoreDemo │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── GreetingCard.cs │ ├── ImageFile.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── PhotoList.cs │ ├── PhotoStoreDemo.csproj │ ├── Photos │ │ ├── flower1.jpg │ │ ├── flower2.jpg │ │ ├── leaf1.jpg │ │ ├── leaf2.jpg │ │ ├── skyline.jpg │ │ ├── sunlight through sequoias.jpg │ │ ├── sunset.jpg │ │ └── winter1.jpg │ ├── Print.cs │ ├── PrintBase.cs │ ├── PrintList.cs │ ├── PrintType.cs │ ├── PrintTypeList.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── RubberbandAdorner.cs │ └── Shirt.cs ├── PhotoViewerDemo │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ColorRepresentation.cs │ ├── CroppingAdorner.cs │ ├── ExifMetadata.cs │ ├── ExposureMode.cs │ ├── ExposureModeConverter.cs │ ├── ExposureTimeConverter.cs │ ├── FlashMode.cs │ ├── FocalLengthConverter.cs │ ├── Images │ │ ├── market 031.jpg │ │ ├── market 032.jpg │ │ ├── market 034.jpg │ │ ├── market 039.jpg │ │ └── market 040.jpg │ ├── LensApertureConverter.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Photo.cs │ ├── PhotoCollection.cs │ ├── PhotoSizeConverter.cs │ ├── PhotoViewer.cs │ ├── PhotoViewer.xaml │ ├── PhotoViewerDemo.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── WhiteBalanceMode.cs ├── SlidePuzzleDemo │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Document.cs │ ├── Document.xaml │ ├── FormContent.cs │ ├── FormContent.xaml │ ├── MoveStatus.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Puzzle.cs │ ├── Puzzle.xaml │ ├── PuzzleCell.cs │ ├── PuzzleGrid.cs │ ├── PuzzleGrid.xaml │ ├── PuzzleLogic.cs │ ├── README.md │ ├── SlidePuzzleDemo.csproj │ ├── SpinningCube.cs │ ├── SpinningCube.xaml │ ├── VectorContent.cs │ ├── VectorContent.xaml │ ├── flower.jpg │ ├── intro.wmv │ └── table-bowl.jpg ├── StickyNotesDemo │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Dialog.cs │ ├── Email.cs │ ├── EmailDialog.cs │ ├── GenerateImageResources.cs │ ├── MailSettingsDialog.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── NativeMethods.cs │ ├── PropNames.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── Splash.cs │ ├── StickyNotesDemo.csproj │ ├── Window2.cs │ └── alarm3.png ├── VideoViewerDemo │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MyVideo.cs │ ├── MyVideos.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── VideoViewerDemo.csproj │ ├── images │ │ ├── crystal.jpg │ │ └── preview.png │ └── media │ │ ├── day7.wmv │ │ ├── msdn news.wmv │ │ ├── my xbox clip.wmv │ │ └── the dotnet show.wmv ├── WPF Application Samples.sln ├── WPFGallery.DesktopWap │ ├── Images │ │ ├── BadgeLogo.scale-100.png │ │ ├── BadgeLogo.scale-125.png │ │ ├── BadgeLogo.scale-150.png │ │ ├── BadgeLogo.scale-200.png │ │ ├── BadgeLogo.scale-400.png │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── Package.appxmanifest │ ├── WPFGallery.DesktopWap.Package.wapproj │ └── test-cert │ │ └── GenerateTestPfx.ps1 └── WPFGallery │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Assets │ ├── ControlImages │ │ ├── Acrylic.png │ │ ├── AnimatedIcon.png │ │ ├── AnimatedVisualPlayer.png │ │ ├── AnimationInterop.png │ │ ├── AnnotatedScrollBar.png │ │ ├── AppBarButton.png │ │ ├── AppBarSeparator.png │ │ ├── AppBarToggleButton.png │ │ ├── AutoSuggestBox.png │ │ ├── AutomationProperties.png │ │ ├── Border.png │ │ ├── BreadcrumbBar.png │ │ ├── Button.png │ │ ├── CalendarDatePicker.png │ │ ├── CalendarView.png │ │ ├── Canvas.png │ │ ├── CaptureElement.png │ │ ├── Checkbox.png │ │ ├── Clipboard.png │ │ ├── ColorPaletteResources.png │ │ ├── ColorPicker.png │ │ ├── ComboBox.png │ │ ├── CommandBar.png │ │ ├── CommandBarFlyout.png │ │ ├── CompactSizing.png │ │ ├── ConnectedAnimation.png │ │ ├── ContentDialog.png │ │ ├── CreateMultipleWindows.png │ │ ├── DataGrid.png │ │ ├── DatePicker.png │ │ ├── DropDownButton.png │ │ ├── EasingFunction.png │ │ ├── Expander.png │ │ ├── FilePicker.png │ │ ├── FlipView.png │ │ ├── Flyout.png │ │ ├── Grid.png │ │ ├── GridSplitter.png │ │ ├── GridView.png │ │ ├── GroupBox.png │ │ ├── HyperlinkButton.png │ │ ├── IconElement.png │ │ ├── Image.png │ │ ├── ImplicitTransition.png │ │ ├── InfoBadge.png │ │ ├── InfoBar.png │ │ ├── InkCanvas.png │ │ ├── InkToolbar.png │ │ ├── InputValidation.png │ │ ├── ItemsRepeater.png │ │ ├── ItemsView.png │ │ ├── Line.png │ │ ├── ListBox.png │ │ ├── ListView.png │ │ ├── MapControl.png │ │ ├── MediaPlayerElement.png │ │ ├── MenuBar.png │ │ ├── MenuFlyout.png │ │ ├── NavigationView.png │ │ ├── NumberBox.png │ │ ├── PageTransition.png │ │ ├── ParallaxView.png │ │ ├── PasswordBox.png │ │ ├── PersonPicture.png │ │ ├── PipsPager.png │ │ ├── Pivot.png │ │ ├── Placeholder.png │ │ ├── ProgressBar.png │ │ ├── ProgressRing.png │ │ ├── PullToRefresh.png │ │ ├── RadialGradientBrush.png │ │ ├── RadioButton.png │ │ ├── RadioButtons.png │ │ ├── RatingControl.png │ │ ├── RelativePanel.png │ │ ├── RepeatButton.png │ │ ├── ResizeGrip.png │ │ ├── RevealFocus.png │ │ ├── RichEditBox.png │ │ ├── RichTextBlock.png │ │ ├── ScrollView.png │ │ ├── ScrollViewer.png │ │ ├── SemanticZoom.png │ │ ├── Shape.png │ │ ├── Slider.png │ │ ├── Sound.png │ │ ├── SplitButton.png │ │ ├── SplitView.png │ │ ├── StackPanel.png │ │ ├── StandardUICommand.png │ │ ├── SwipeControl.png │ │ ├── TabView.png │ │ ├── TeachingTip.png │ │ ├── TextBlock.png │ │ ├── TextBox.png │ │ ├── ThemeTransition.png │ │ ├── TimePicker.png │ │ ├── TitleBar.png │ │ ├── ToggleButton.png │ │ ├── ToggleSplitButton.png │ │ ├── ToggleSwitch.png │ │ ├── ToolTip.png │ │ ├── TreeView.png │ │ ├── VariableSizedWrapGrid.png │ │ ├── Viewbox.png │ │ ├── WebView.png │ │ └── XamlUICommand.png │ ├── HomeHeaderTiles │ │ ├── Header-Store.dark.png │ │ ├── Header-WindowsDesign.png │ │ └── WPFGallery-Icon.ico │ ├── README_Images │ │ ├── WPFGalleryLanding.png │ │ └── WPFGalleryLandingDark.png │ ├── UserDashboard │ │ ├── 103-100x100.jpg │ │ ├── 177-100x100.jpg │ │ ├── 334-100x100.jpg │ │ ├── 338-100x100.jpg │ │ ├── 342-100x100.jpg │ │ ├── 349-100x100.jpg │ │ ├── 366-100x100.jpg │ │ ├── 367-100x100.jpg │ │ ├── 373-100x100.jpg │ │ ├── 375-100x100.jpg │ │ ├── 378-100x100.jpg │ │ ├── 399-100x100.jpg │ │ ├── 447-100x100.jpg │ │ ├── 453-100x100.jpg │ │ ├── 469-100x100.jpg │ │ ├── 473-100x100.jpg │ │ ├── 505-100x100.jpg │ │ ├── 64-100x100.jpg │ │ ├── 65-100x100.jpg │ │ └── 91-100x100.jpg │ ├── WPFGallery-Icon.ico │ ├── WPFGallery-Icon.png │ ├── WPFGalleryPreviewIcon.ico │ ├── WPFGalleryPreviewIcon.png │ ├── WPFGalleryPreviewIcon.svg │ ├── win11-dashboard.dark.png │ ├── win11-dashboard.light.png │ └── win11-dashboard.png │ ├── Controls │ ├── ColorPageExample.xaml │ ├── ColorPageExample.xaml.cs │ ├── ColorTile.xaml │ ├── ColorTile.xaml.cs │ ├── ControlExample.xaml │ ├── ControlExample.xaml.cs │ ├── HeaderTile.xaml │ ├── HeaderTile.xaml.cs │ ├── PageHeader.xaml │ ├── PageHeader.xaml.cs │ ├── TileGallery.xaml │ └── TileGallery.xaml.cs │ ├── Helpers │ ├── EmptyToVisibilityConverter.cs │ ├── ImageIdToBrushConverter.cs │ ├── NameToPageTypeConverter.cs │ ├── NullToVisibilityConverter.cs │ └── Utility.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Models │ ├── ControlsInfoData.json │ ├── ControlsInfoDataSource.cs │ ├── IconsData.cs │ ├── IconsData.json │ ├── Person.cs │ ├── Product.cs │ └── User.cs │ ├── Navigation │ ├── NavigatedEventArgs.cs │ └── NavigationService.cs │ ├── README.md │ ├── Resources │ ├── PageStyles.xaml │ └── Templates.xaml │ ├── Usings.cs │ ├── ViewModels │ ├── AllSamplesPageViewModel.cs │ ├── BasicInput │ │ ├── ButtonPageViewModel.cs │ │ ├── CheckBoxPageViewModel.cs │ │ ├── ComboBoxPageViewModel.cs │ │ ├── RadioButtonPageViewModel.cs │ │ └── SliderPageViewModel.cs │ ├── BasicInputPageViewModel.cs │ ├── Collections │ │ ├── DataGridPageViewModel.cs │ │ ├── ListBoxPageViewModel.cs │ │ ├── ListViewPageViewModel.cs │ │ └── TreeViewPageViewModel.cs │ ├── CollectionsPageViewModel.cs │ ├── DashboardPageViewModel.cs │ ├── DateAndTime │ │ ├── CalendarPageViewModel.cs │ │ └── DatePickerPageViewModel.cs │ ├── DateAndTimePageViewModel.cs │ ├── DesignGuidance │ │ ├── ColorsPageViewModel.cs │ │ └── IconsPageViewModel.cs │ ├── DesignGuidancePageViewModel.cs │ ├── Layout │ │ ├── ExpanderPageViewModel.cs │ │ ├── GridSplitterPageViewModel.cs │ │ ├── GroupBoxPageViewModel.cs │ │ └── ResizeGripPageViewModel.cs │ ├── LayoutPageViewModel.cs │ ├── MainWindowViewModel.cs │ ├── Media │ │ ├── CanvasPageViewModel.cs │ │ └── ImagePageViewModel.cs │ ├── MediaPageViewModel.cs │ ├── Navigation │ │ ├── FramePageViewModel.cs │ │ ├── MenuPageViewModel.cs │ │ └── TabControlPageViewModel.cs │ ├── NavigationPageViewModel.cs │ ├── NavigationWindowPageViewModel.cs │ ├── Samples │ │ └── UserDashboardPageViewModel.cs │ ├── SamplesPageViewModel.cs │ ├── SettingsPageViewModel.cs │ ├── StatusAndInfo │ │ ├── ProgressBarPageViewModel.cs │ │ └── ToolTipPageViewModel.cs │ ├── StatusAndInfoPageViewModel.cs │ ├── Text │ │ ├── HyperlinkPageViewModel.cs │ │ ├── LabelPageViewModel.cs │ │ ├── PasswordBoxPageViewModel.cs │ │ ├── RichTextEditPageViewModel.cs │ │ ├── TextBlockPageViewModel.cs │ │ └── TextBoxPageViewModel.cs │ ├── TextPageViewModel.cs │ ├── TypographyPageViewModel.cs │ └── WhatsNewPageViewModel.cs │ ├── Views │ ├── AllSamplesPage.xaml │ ├── AllSamplesPage.xaml.cs │ ├── BasicInput │ │ ├── ButtonPage.xaml │ │ ├── ButtonPage.xaml.cs │ │ ├── CheckBoxPage.xaml │ │ ├── CheckBoxPage.xaml.cs │ │ ├── ComboBoxPage.xaml │ │ ├── ComboBoxPage.xaml.cs │ │ ├── RadioButtonPage.xaml │ │ ├── RadioButtonPage.xaml.cs │ │ ├── SliderPage.xaml │ │ └── SliderPage.xaml.cs │ ├── BasicInputPage.xaml │ ├── BasicInputPage.xaml.cs │ ├── Collections │ │ ├── DataGridPage.xaml │ │ ├── DataGridPage.xaml.cs │ │ ├── ListBoxPage.xaml │ │ ├── ListBoxPage.xaml.cs │ │ ├── ListViewPage.xaml │ │ ├── ListViewPage.xaml.cs │ │ ├── TreeViewPage.xaml │ │ └── TreeViewPage.xaml.cs │ ├── CollectionsPage.xaml │ ├── CollectionsPage.xaml.cs │ ├── DashboardPage.xaml │ ├── DashboardPage.xaml.cs │ ├── DateAndTime │ │ ├── CalendarPage.xaml │ │ ├── CalendarPage.xaml.cs │ │ ├── DatePickerPage.xaml │ │ └── DatePickerPage.xaml.cs │ ├── DateAndTimePage.xaml │ ├── DateAndTimePage.xaml.cs │ ├── DesignGuidance │ │ ├── BackgroundSection.xaml │ │ ├── BackgroundSection.xaml.cs │ │ ├── ColorsPage.xaml │ │ ├── ColorsPage.xaml.cs │ │ ├── FillSection.xaml │ │ ├── FillSection.xaml.cs │ │ ├── HighContrastSection.xaml │ │ ├── HighContrastSection.xaml.cs │ │ ├── IconsPage.xaml │ │ ├── IconsPage.xaml.cs │ │ ├── SignalSection.xaml │ │ ├── SignalSection.xaml.cs │ │ ├── StrokeSection.xaml │ │ ├── StrokeSection.xaml.cs │ │ ├── TextSection.xaml │ │ ├── TextSection.xaml.cs │ │ ├── TypographyPage.xaml │ │ └── TypographyPage.xaml.cs │ ├── DesignGuidancePage.xaml │ ├── DesignGuidancePage.xaml.cs │ ├── Layout │ │ ├── ExpanderPage.xaml │ │ ├── ExpanderPage.xaml.cs │ │ ├── GridSplitterPage.xaml │ │ ├── GridSplitterPage.xaml.cs │ │ ├── GroupBoxPage.xaml │ │ ├── GroupBoxPage.xaml.cs │ │ ├── ResizeGripPage.xaml │ │ └── ResizeGripPage.xaml.cs │ ├── LayoutPage.xaml │ ├── LayoutPage.xaml.cs │ ├── Media │ │ ├── CanvasPage.xaml │ │ ├── CanvasPage.xaml.cs │ │ ├── ImagePage.xaml │ │ └── ImagePage.xaml.cs │ ├── MediaPage.xaml │ ├── MediaPage.xaml.cs │ ├── Navigation │ │ ├── FramePage.xaml │ │ ├── FramePage.xaml.cs │ │ ├── FrameWindow.xaml │ │ ├── FrameWindow.xaml.cs │ │ ├── MenuPage.xaml │ │ ├── MenuPage.xaml.cs │ │ ├── NavigationWindowPage.xaml │ │ ├── NavigationWindowPage.xaml.cs │ │ ├── Page1.xaml │ │ ├── Page1.xaml.cs │ │ ├── Page2.xaml │ │ ├── Page2.xaml.cs │ │ ├── TabControlPage.xaml │ │ └── TabControlPage.xaml.cs │ ├── NavigationPage.xaml │ ├── NavigationPage.xaml.cs │ ├── Samples │ │ ├── UserDashboardPage.xaml │ │ └── UserDashboardPage.xaml.cs │ ├── SamplesPage.xaml │ ├── SamplesPage.xaml.cs │ ├── SettingsPage.xaml │ ├── SettingsPage.xaml.cs │ ├── StatusAndInfo │ │ ├── ProgressBarPage.xaml │ │ ├── ProgressBarPage.xaml.cs │ │ ├── ToolTipPage.xaml │ │ └── ToolTipPage.xaml.cs │ ├── StatusAndInfoPage.xaml │ ├── StatusAndInfoPage.xaml.cs │ ├── Text │ │ ├── HyperlinkPage.xaml │ │ ├── HyperlinkPage.xaml.cs │ │ ├── LabelPage.xaml │ │ ├── LabelPage.xaml.cs │ │ ├── PasswordBoxPage.xaml │ │ ├── PasswordBoxPage.xaml.cs │ │ ├── RichTextEditPage.xaml │ │ ├── RichTextEditPage.xaml.cs │ │ ├── TextBlockPage.xaml │ │ ├── TextBlockPage.xaml.cs │ │ ├── TextBoxPage.xaml │ │ └── TextBoxPage.xaml.cs │ ├── TextPage.xaml │ ├── TextPage.xaml.cs │ ├── WhatsNewPage.xaml │ └── WhatsNewPage.xaml.cs │ ├── WPFGallery.DesktopWap.sln │ ├── WPFGallery.csproj │ ├── WPFGallery.sln │ └── app.manifest ├── Speech and Media ├── MediaGallery │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MediaElementExample.cs │ ├── MediaElementExample.xaml │ ├── MediaGallery.csproj │ ├── MediaGallery.csproj.user │ ├── MediaTimelineExample.cs │ ├── MediaTimelineExample.xaml │ ├── MediaTimelinePlusAnimationExample.xaml │ ├── PositionConverter.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── SampleViewer.cs │ ├── SampleViewer.xaml │ ├── SoundFromUserEventExample.xaml │ ├── images │ │ ├── ui_next_d.gif │ │ ├── ui_pause.gif │ │ ├── ui_play.gif │ │ ├── ui_previous_d.gif │ │ ├── ui_resume.gif │ │ └── ui_stop.gif │ └── media │ │ ├── bee.wmv │ │ ├── blues.wma │ │ ├── ringin.wav │ │ └── xbox.wmv └── UsingSpeech │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ └── UsingSpeech.csproj ├── Styles & Templates ├── AlternatingAppearanceOfItems │ ├── AlternatingAppearanceOfItems.csproj │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── Division.cs │ ├── League.cs │ ├── ListLeagueList.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Place.cs │ ├── Places.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── Team.cs ├── ContentControlStyle │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ContentControlStyle.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── EventTriggers │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── EventTriggers.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── FindingElementsInTemplates │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── FindingElementsInTemplates.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md └── IntroToStylingAndTemplating │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── IntroToStylingAndTemplating.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Photo.cs │ ├── PhotoList.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ └── images │ ├── flower1.jpg │ ├── flower2.jpg │ ├── leaf1.jpg │ ├── leaf2.jpg │ └── winter1.jpg ├── Threading ├── MultiThreadingWebBrowser │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MultiThreadingWebBrowser.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── SingleThreadedApplication │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── SingleThreadedApplication.csproj └── UsingDispatcher │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ └── UsingDispatcher.csproj ├── Tools ├── BamlReflector │ ├── .gitignore │ ├── BamlReflector.sln │ ├── BamlReflector │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── BamlReflector.csproj │ │ ├── BamlReflectorContext.cs │ │ ├── NewDisassemblyCache.cs │ │ ├── ReferenceAssembly_VM.cs │ │ ├── Window1.xaml │ │ ├── Window1.xaml.cs │ │ └── app.manifest │ ├── BamlTools │ │ ├── ApplicationResource.cs │ │ ├── AttributeInfoTableEntry.cs │ │ ├── BamlBinaryReader.cs │ │ ├── BamlFields.cs │ │ ├── BamlNodeStreamReader.cs │ │ ├── BamlRecords.cs │ │ ├── BamlResource.cs │ │ ├── BamlTools.csproj │ │ ├── DiagnosticWriter.cs │ │ ├── HexDumper.cs │ │ ├── KnownElements.cs │ │ ├── KnownProperties.cs │ │ ├── NewBamlDisassembler.cs │ │ ├── NullWrappingXamlReader.cs │ │ ├── NullXamlWriter.cs │ │ ├── OldBamlDisassembler.cs │ │ ├── TypeInfoTableEntry.cs │ │ └── WrappingXamlReader.cs │ └── README.md └── LocBaml │ ├── BamlLocalizabilityByReflection.cs │ ├── DefaultAttributes.cs │ ├── InputBamlStreamList.cs │ ├── LICENSE.TXT │ ├── LocBaml.cs │ ├── LocBaml.csproj │ ├── ResourceGenerator.cs │ ├── ResourceTextReader.cs │ ├── ResourceTextWriter.cs │ ├── StringLoader.cs │ ├── TranslationDictionaries.cs │ ├── commandline.cs │ ├── const.cs │ └── resources │ └── StringTable.resText ├── Visual Layer ├── CompositionTarget │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── CompositionTarget.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── DrawingVisual │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DrawingVisual.csproj │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MyVisualHost.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md └── VisualsHitTesting │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── MyShape.cs │ ├── MyWindow.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ ├── VisualsHitTesting.csproj │ └── form1.resx ├── WPFSamples.msbuild.sln ├── WPFSamples.sln ├── Windows ├── CommonDialog │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── CommonDialogs.csproj │ ├── DialogDataModel.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowViewModel.cs │ └── RelayCommand.cs ├── CustomWindowUI │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── CustomWindowChrome.cs │ ├── CustomWindowChrome.xaml │ ├── CustomWindowUI.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── DialogBox │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── DialogBox.csproj │ ├── FindDialogBox.cs │ ├── FindDialogBox.xaml │ ├── FontDialogBox.cs │ ├── FontDialogBox.xaml │ ├── FontPropertyLists.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MarginValidationRule.cs │ ├── MarginsDialogBox.cs │ ├── MarginsDialogBox.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── TextFoundEventHandler.cs ├── MessageBox │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── MessageBox.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── NonRectangularWindow │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── NonRectangularWindow.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── NotificationIcon │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── NotificationIcon.csproj │ ├── NotifyIcon.ico │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── README.md ├── SaveWindowState │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── POINT.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── RECT.cs │ ├── SaveWindowState.csproj │ └── Windowplacement.cs ├── ShowWindowWithoutActivation │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ChildWindow.cs │ ├── ChildWindow.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── ShowWindowWithoutActivation.csproj ├── WindowActivationAndDeactivation │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── WindowActivationAndDeactivation.csproj │ └── numbers.wmv ├── WindowHiding │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── ChildWindow.cs │ ├── ChildWindow.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ └── WindowHiding.csproj ├── WindowSizingOrder │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── README.md │ ├── SizingWindow.cs │ ├── SizingWindow.xaml │ └── WindowSizingOrder.csproj └── Wizard │ ├── App.config │ ├── App.cs │ ├── App.xaml │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ ├── Wizard.csproj │ ├── WizardData.cs │ ├── WizardDialogBox.cs │ ├── WizardDialogBox.xaml │ ├── WizardLauncher.cs │ ├── WizardPage1.cs │ ├── WizardPage1.xaml │ ├── WizardPage2.cs │ ├── WizardPage2.xaml │ ├── WizardPage3.cs │ ├── WizardPage3.xaml │ ├── WizardResult.cs │ ├── WizardReturnEventArgs.cs │ └── WizardReturnEventHandler.cs ├── azure-pipelines.yml ├── eng ├── AzurePipelinesMatrixGenerator.ps1 ├── EnsureGlobalJsonSdk.ps1 ├── README.md ├── build.cmd └── build.ps1 └── global.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /Accessibility/FetchTimer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/FetchTimer/App.config -------------------------------------------------------------------------------- /Accessibility/FetchTimer/FetchTimer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/FetchTimer/FetchTimer.csproj -------------------------------------------------------------------------------- /Accessibility/FetchTimer/FetchTimerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/FetchTimer/FetchTimerForm.cs -------------------------------------------------------------------------------- /Accessibility/FetchTimer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/FetchTimer/Program.cs -------------------------------------------------------------------------------- /Accessibility/FetchTimer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/FetchTimer/README.md -------------------------------------------------------------------------------- /Accessibility/FindText/FindText/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/FindText/FindText/App.config -------------------------------------------------------------------------------- /Accessibility/FindText/FindText/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/FindText/FindText/App.cs -------------------------------------------------------------------------------- /Accessibility/FindText/FindText/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/FindText/FindText/App.xaml -------------------------------------------------------------------------------- /Accessibility/FindText/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/FindText/README.md -------------------------------------------------------------------------------- /Accessibility/FocusTracker/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/FocusTracker/App.config -------------------------------------------------------------------------------- /Accessibility/FocusTracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/FocusTracker/README.md -------------------------------------------------------------------------------- /Accessibility/FocusTracker/Tracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/FocusTracker/Tracker.cs -------------------------------------------------------------------------------- /Accessibility/Highlighter/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/Highlighter/App.config -------------------------------------------------------------------------------- /Accessibility/Highlighter/ClientForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/Highlighter/ClientForm.cs -------------------------------------------------------------------------------- /Accessibility/Highlighter/ClientForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/Highlighter/ClientForm.resx -------------------------------------------------------------------------------- /Accessibility/Highlighter/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/Highlighter/NativeMethods.cs -------------------------------------------------------------------------------- /Accessibility/Highlighter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/Highlighter/README.md -------------------------------------------------------------------------------- /Accessibility/InsertText/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/InsertText/App.config -------------------------------------------------------------------------------- /Accessibility/InsertText/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/InsertText/README.md -------------------------------------------------------------------------------- /Accessibility/InvokePattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/InvokePattern/README.md -------------------------------------------------------------------------------- /Accessibility/InvokePattern/Target/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/InvokePattern/Target/App.cs -------------------------------------------------------------------------------- /Accessibility/InvokePattern/Target/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/InvokePattern/Target/App.xaml -------------------------------------------------------------------------------- /Accessibility/SelectionPattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/SelectionPattern/README.md -------------------------------------------------------------------------------- /Accessibility/WindowMove/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/WindowMove/README.md -------------------------------------------------------------------------------- /Accessibility/WindowMove/WindowMove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/WindowMove/WindowMove.cs -------------------------------------------------------------------------------- /Accessibility/WindowMove/WindowMove.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/WindowMove/WindowMove.csproj -------------------------------------------------------------------------------- /Accessibility/WindowMove/security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Accessibility/WindowMove/security.xml -------------------------------------------------------------------------------- /Animation/AnimationExamples/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/AnimationExamples/App.config -------------------------------------------------------------------------------- /Animation/AnimationExamples/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/AnimationExamples/App.cs -------------------------------------------------------------------------------- /Animation/AnimationExamples/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/AnimationExamples/App.xaml -------------------------------------------------------------------------------- /Animation/AnimationExamples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/AnimationExamples/README.md -------------------------------------------------------------------------------- /Animation/AnimationExamples/SampleViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/AnimationExamples/SampleViewer.cs -------------------------------------------------------------------------------- /Animation/AnimationTiming/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/AnimationTiming/App.config -------------------------------------------------------------------------------- /Animation/AnimationTiming/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/AnimationTiming/App.cs -------------------------------------------------------------------------------- /Animation/AnimationTiming/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/AnimationTiming/App.xaml -------------------------------------------------------------------------------- /Animation/AnimationTiming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/AnimationTiming/README.md -------------------------------------------------------------------------------- /Animation/AnimationTiming/SampleViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/AnimationTiming/SampleViewer.cs -------------------------------------------------------------------------------- /Animation/AnimationTiming/SampleViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/AnimationTiming/SampleViewer.xaml -------------------------------------------------------------------------------- /Animation/AnimationTiming/SpeedExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/AnimationTiming/SpeedExample.cs -------------------------------------------------------------------------------- /Animation/AnimationTiming/SpeedExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/AnimationTiming/SpeedExample.xaml -------------------------------------------------------------------------------- /Animation/CustomAnimation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/CustomAnimation/App.config -------------------------------------------------------------------------------- /Animation/CustomAnimation/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/CustomAnimation/App.cs -------------------------------------------------------------------------------- /Animation/CustomAnimation/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/CustomAnimation/App.xaml -------------------------------------------------------------------------------- /Animation/CustomAnimation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/CustomAnimation/README.md -------------------------------------------------------------------------------- /Animation/KeyFrameAnimation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/KeyFrameAnimation/App.config -------------------------------------------------------------------------------- /Animation/KeyFrameAnimation/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/KeyFrameAnimation/App.cs -------------------------------------------------------------------------------- /Animation/KeyFrameAnimation/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/KeyFrameAnimation/App.xaml -------------------------------------------------------------------------------- /Animation/KeyFrameAnimation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/KeyFrameAnimation/README.md -------------------------------------------------------------------------------- /Animation/KeyFrameAnimation/SampleViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/KeyFrameAnimation/SampleViewer.cs -------------------------------------------------------------------------------- /Animation/KeySplineAnimations/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/KeySplineAnimations/App.config -------------------------------------------------------------------------------- /Animation/KeySplineAnimations/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/KeySplineAnimations/App.cs -------------------------------------------------------------------------------- /Animation/KeySplineAnimations/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/KeySplineAnimations/App.xaml -------------------------------------------------------------------------------- /Animation/KeySplineAnimations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/KeySplineAnimations/README.md -------------------------------------------------------------------------------- /Animation/LocalAnimations/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/LocalAnimations/App.config -------------------------------------------------------------------------------- /Animation/LocalAnimations/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/LocalAnimations/App.cs -------------------------------------------------------------------------------- /Animation/LocalAnimations/EntryClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/LocalAnimations/EntryClass.cs -------------------------------------------------------------------------------- /Animation/LocalAnimations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/LocalAnimations/README.md -------------------------------------------------------------------------------- /Animation/LocalAnimations/SampleViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/LocalAnimations/SampleViewer.cs -------------------------------------------------------------------------------- /Animation/OpacityAnimation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/OpacityAnimation/App.config -------------------------------------------------------------------------------- /Animation/OpacityAnimation/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/OpacityAnimation/App.cs -------------------------------------------------------------------------------- /Animation/OpacityAnimation/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/OpacityAnimation/App.xaml -------------------------------------------------------------------------------- /Animation/OpacityAnimation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/OpacityAnimation/README.md -------------------------------------------------------------------------------- /Animation/PathAnimations/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/PathAnimations/App.config -------------------------------------------------------------------------------- /Animation/PathAnimations/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/PathAnimations/App.cs -------------------------------------------------------------------------------- /Animation/PathAnimations/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/PathAnimations/App.xaml -------------------------------------------------------------------------------- /Animation/PathAnimations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/PathAnimations/README.md -------------------------------------------------------------------------------- /Animation/PathAnimations/SampleViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/PathAnimations/SampleViewer.cs -------------------------------------------------------------------------------- /Animation/PathAnimations/SampleViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/PathAnimations/SampleViewer.xaml -------------------------------------------------------------------------------- /Animation/Per-FrameAnimation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/Per-FrameAnimation/App.config -------------------------------------------------------------------------------- /Animation/Per-FrameAnimation/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/Per-FrameAnimation/App.cs -------------------------------------------------------------------------------- /Animation/Per-FrameAnimation/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/Per-FrameAnimation/App.xaml -------------------------------------------------------------------------------- /Animation/Per-FrameAnimation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/Per-FrameAnimation/README.md -------------------------------------------------------------------------------- /Animation/PropertyAnimation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/PropertyAnimation/App.config -------------------------------------------------------------------------------- /Animation/PropertyAnimation/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/PropertyAnimation/App.cs -------------------------------------------------------------------------------- /Animation/PropertyAnimation/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/PropertyAnimation/App.xaml -------------------------------------------------------------------------------- /Animation/PropertyAnimation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/PropertyAnimation/README.md -------------------------------------------------------------------------------- /Animation/TargetValues/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/TargetValues/App.config -------------------------------------------------------------------------------- /Animation/TargetValues/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/TargetValues/App.cs -------------------------------------------------------------------------------- /Animation/TargetValues/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/TargetValues/App.xaml -------------------------------------------------------------------------------- /Animation/TargetValues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/TargetValues/README.md -------------------------------------------------------------------------------- /Animation/TargetValues/TargetValues.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Animation/TargetValues/TargetValues.csproj -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Clipboard/ClipboardSpy/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Clipboard/ClipboardSpy/App.config -------------------------------------------------------------------------------- /Clipboard/ClipboardSpy/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Clipboard/ClipboardSpy/App.cs -------------------------------------------------------------------------------- /Clipboard/ClipboardSpy/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Clipboard/ClipboardSpy/App.xaml -------------------------------------------------------------------------------- /Clipboard/ClipboardSpy/ClipboardSpy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Clipboard/ClipboardSpy/ClipboardSpy.csproj -------------------------------------------------------------------------------- /Clipboard/ClipboardSpy/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Clipboard/ClipboardSpy/MainWindow.cs -------------------------------------------------------------------------------- /Clipboard/ClipboardSpy/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Clipboard/ClipboardSpy/MainWindow.xaml -------------------------------------------------------------------------------- /Clipboard/ClipboardSpy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Clipboard/ClipboardSpy/README.md -------------------------------------------------------------------------------- /Clipboard/ClipboardViewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Clipboard/ClipboardViewer/App.config -------------------------------------------------------------------------------- /Clipboard/ClipboardViewer/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Clipboard/ClipboardViewer/App.cs -------------------------------------------------------------------------------- /Clipboard/ClipboardViewer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Clipboard/ClipboardViewer/App.xaml -------------------------------------------------------------------------------- /Clipboard/ClipboardViewer/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Clipboard/ClipboardViewer/MainWindow.cs -------------------------------------------------------------------------------- /Clipboard/ClipboardViewer/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Clipboard/ClipboardViewer/MainWindow.xaml -------------------------------------------------------------------------------- /Clipboard/ClipboardViewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Clipboard/ClipboardViewer/README.md -------------------------------------------------------------------------------- /Compatibility/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Compatibility/App.config -------------------------------------------------------------------------------- /Compatibility/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Compatibility/App.xaml -------------------------------------------------------------------------------- /Compatibility/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Compatibility/App.xaml.cs -------------------------------------------------------------------------------- /Compatibility/AppCompat-Quirks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Compatibility/AppCompat-Quirks.csproj -------------------------------------------------------------------------------- /Compatibility/AppContextInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Compatibility/AppContextInformation.cs -------------------------------------------------------------------------------- /Compatibility/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Compatibility/MainWindow.xaml -------------------------------------------------------------------------------- /Compatibility/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Compatibility/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Compatibility/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Compatibility/README.md -------------------------------------------------------------------------------- /Compatibility/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Compatibility/app.manifest -------------------------------------------------------------------------------- /Compatibility/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Compatibility/images/screenshot.png -------------------------------------------------------------------------------- /Compatibility/runtimeconfig.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Compatibility/runtimeconfig.template.json -------------------------------------------------------------------------------- /Data Binding/ADODataSet/ADODataSet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/ADODataSet/ADODataSet.csproj -------------------------------------------------------------------------------- /Data Binding/ADODataSet/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/ADODataSet/App.config -------------------------------------------------------------------------------- /Data Binding/ADODataSet/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/ADODataSet/App.cs -------------------------------------------------------------------------------- /Data Binding/ADODataSet/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/ADODataSet/App.xaml -------------------------------------------------------------------------------- /Data Binding/ADODataSet/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/ADODataSet/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/ADODataSet/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/ADODataSet/MainWindow.xaml -------------------------------------------------------------------------------- /Data Binding/ADODataSet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/ADODataSet/README.md -------------------------------------------------------------------------------- /Data Binding/ADODataSet/bookdata.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/ADODataSet/bookdata.mdb -------------------------------------------------------------------------------- /Data Binding/ADODataSet/copydata.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/ADODataSet/copydata.cmd -------------------------------------------------------------------------------- /Data Binding/ADODataSet/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/ADODataSet/readme.txt -------------------------------------------------------------------------------- /Data Binding/BindConversion/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindConversion/App.config -------------------------------------------------------------------------------- /Data Binding/BindConversion/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindConversion/App.cs -------------------------------------------------------------------------------- /Data Binding/BindConversion/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindConversion/App.xaml -------------------------------------------------------------------------------- /Data Binding/BindConversion/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindConversion/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/BindConversion/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindConversion/MainWindow.xaml -------------------------------------------------------------------------------- /Data Binding/BindConversion/MyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindConversion/MyConverter.cs -------------------------------------------------------------------------------- /Data Binding/BindConversion/MyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindConversion/MyData.cs -------------------------------------------------------------------------------- /Data Binding/BindConversion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindConversion/README.md -------------------------------------------------------------------------------- /Data Binding/BindValidation/AgeRangeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindValidation/AgeRangeRule.cs -------------------------------------------------------------------------------- /Data Binding/BindValidation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindValidation/App.config -------------------------------------------------------------------------------- /Data Binding/BindValidation/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindValidation/App.cs -------------------------------------------------------------------------------- /Data Binding/BindValidation/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindValidation/App.xaml -------------------------------------------------------------------------------- /Data Binding/BindValidation/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindValidation/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/BindValidation/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindValidation/MainWindow.xaml -------------------------------------------------------------------------------- /Data Binding/BindValidation/MyDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindValidation/MyDataSource.cs -------------------------------------------------------------------------------- /Data Binding/BindValidation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindValidation/README.md -------------------------------------------------------------------------------- /Data Binding/BindingDPToDP/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindingDPToDP/App.config -------------------------------------------------------------------------------- /Data Binding/BindingDPToDP/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindingDPToDP/App.cs -------------------------------------------------------------------------------- /Data Binding/BindingDPToDP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindingDPToDP/App.xaml -------------------------------------------------------------------------------- /Data Binding/BindingDPToDP/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindingDPToDP/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/BindingDPToDP/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindingDPToDP/MainWindow.xaml -------------------------------------------------------------------------------- /Data Binding/BindingDPToDP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindingDPToDP/README.md -------------------------------------------------------------------------------- /Data Binding/BindingToMethod/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindingToMethod/App.config -------------------------------------------------------------------------------- /Data Binding/BindingToMethod/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindingToMethod/App.cs -------------------------------------------------------------------------------- /Data Binding/BindingToMethod/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindingToMethod/App.xaml -------------------------------------------------------------------------------- /Data Binding/BindingToMethod/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindingToMethod/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/BindingToMethod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindingToMethod/README.md -------------------------------------------------------------------------------- /Data Binding/BindingToMethod/TempType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BindingToMethod/TempType.cs -------------------------------------------------------------------------------- /Data Binding/BusinessLayerValidation/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/BusinessLayerValidation/App.cs -------------------------------------------------------------------------------- /Data Binding/CodeOnlyBinding/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CodeOnlyBinding/App.config -------------------------------------------------------------------------------- /Data Binding/CodeOnlyBinding/MainEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CodeOnlyBinding/MainEntry.cs -------------------------------------------------------------------------------- /Data Binding/CodeOnlyBinding/MyApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CodeOnlyBinding/MyApp.cs -------------------------------------------------------------------------------- /Data Binding/CodeOnlyBinding/MyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CodeOnlyBinding/MyData.cs -------------------------------------------------------------------------------- /Data Binding/CodeOnlyBinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CodeOnlyBinding/README.md -------------------------------------------------------------------------------- /Data Binding/CollectionBinding/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CollectionBinding/App.config -------------------------------------------------------------------------------- /Data Binding/CollectionBinding/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CollectionBinding/App.cs -------------------------------------------------------------------------------- /Data Binding/CollectionBinding/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CollectionBinding/App.xaml -------------------------------------------------------------------------------- /Data Binding/CollectionBinding/People.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CollectionBinding/People.cs -------------------------------------------------------------------------------- /Data Binding/CollectionBinding/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CollectionBinding/Person.cs -------------------------------------------------------------------------------- /Data Binding/CollectionBinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CollectionBinding/README.md -------------------------------------------------------------------------------- /Data Binding/CollectionViewSource/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CollectionViewSource/App.cs -------------------------------------------------------------------------------- /Data Binding/CollectionViewSource/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CollectionViewSource/App.xaml -------------------------------------------------------------------------------- /Data Binding/CollectionViewSource/Place.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CollectionViewSource/Place.cs -------------------------------------------------------------------------------- /Data Binding/CollectionViewSource/Places.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CollectionViewSource/Places.cs -------------------------------------------------------------------------------- /Data Binding/CollectionViewSource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CollectionViewSource/README.md -------------------------------------------------------------------------------- /Data Binding/Colors/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Colors/App.config -------------------------------------------------------------------------------- /Data Binding/Colors/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Colors/App.cs -------------------------------------------------------------------------------- /Data Binding/Colors/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Colors/App.xaml -------------------------------------------------------------------------------- /Data Binding/Colors/ColorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Colors/ColorItem.cs -------------------------------------------------------------------------------- /Data Binding/Colors/ColorItemList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Colors/ColorItemList.cs -------------------------------------------------------------------------------- /Data Binding/Colors/Colors.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Colors/Colors.csproj -------------------------------------------------------------------------------- /Data Binding/Colors/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Colors/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/Colors/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Colors/MainWindow.xaml -------------------------------------------------------------------------------- /Data Binding/Colors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Colors/README.md -------------------------------------------------------------------------------- /Data Binding/CompositeCollections/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CompositeCollections/App.cs -------------------------------------------------------------------------------- /Data Binding/CompositeCollections/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CompositeCollections/App.xaml -------------------------------------------------------------------------------- /Data Binding/CompositeCollections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/CompositeCollections/README.md -------------------------------------------------------------------------------- /Data Binding/DataTemplatingIntro/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DataTemplatingIntro/App.config -------------------------------------------------------------------------------- /Data Binding/DataTemplatingIntro/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DataTemplatingIntro/App.cs -------------------------------------------------------------------------------- /Data Binding/DataTemplatingIntro/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DataTemplatingIntro/App.xaml -------------------------------------------------------------------------------- /Data Binding/DataTemplatingIntro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DataTemplatingIntro/README.md -------------------------------------------------------------------------------- /Data Binding/DataTemplatingIntro/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DataTemplatingIntro/Task.cs -------------------------------------------------------------------------------- /Data Binding/DataTemplatingIntro/Tasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DataTemplatingIntro/Tasks.cs -------------------------------------------------------------------------------- /Data Binding/DataTrigger/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DataTrigger/App.config -------------------------------------------------------------------------------- /Data Binding/DataTrigger/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DataTrigger/App.cs -------------------------------------------------------------------------------- /Data Binding/DataTrigger/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DataTrigger/App.xaml -------------------------------------------------------------------------------- /Data Binding/DataTrigger/DataTrigger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DataTrigger/DataTrigger.csproj -------------------------------------------------------------------------------- /Data Binding/DataTrigger/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DataTrigger/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/DataTrigger/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DataTrigger/MainWindow.xaml -------------------------------------------------------------------------------- /Data Binding/DataTrigger/Place.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DataTrigger/Place.cs -------------------------------------------------------------------------------- /Data Binding/DataTrigger/Places.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DataTrigger/Places.cs -------------------------------------------------------------------------------- /Data Binding/DataTrigger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DataTrigger/README.md -------------------------------------------------------------------------------- /Data Binding/DirectionalBinding/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DirectionalBinding/App.config -------------------------------------------------------------------------------- /Data Binding/DirectionalBinding/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DirectionalBinding/App.cs -------------------------------------------------------------------------------- /Data Binding/DirectionalBinding/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DirectionalBinding/App.xaml -------------------------------------------------------------------------------- /Data Binding/DirectionalBinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/DirectionalBinding/README.md -------------------------------------------------------------------------------- /Data Binding/EditingCollections/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/EditingCollections/App.config -------------------------------------------------------------------------------- /Data Binding/EditingCollections/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/EditingCollections/App.cs -------------------------------------------------------------------------------- /Data Binding/EditingCollections/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/EditingCollections/App.xaml -------------------------------------------------------------------------------- /Data Binding/EditingCollections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/EditingCollections/README.md -------------------------------------------------------------------------------- /Data Binding/Grouping/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Grouping/App.config -------------------------------------------------------------------------------- /Data Binding/Grouping/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Grouping/App.cs -------------------------------------------------------------------------------- /Data Binding/Grouping/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Grouping/App.xaml -------------------------------------------------------------------------------- /Data Binding/Grouping/Grouping.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Grouping/Grouping.csproj -------------------------------------------------------------------------------- /Data Binding/Grouping/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Grouping/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/Grouping/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Grouping/MainWindow.xaml -------------------------------------------------------------------------------- /Data Binding/Grouping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Grouping/README.md -------------------------------------------------------------------------------- /Data Binding/Linq/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Linq/App.config -------------------------------------------------------------------------------- /Data Binding/Linq/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Linq/App.cs -------------------------------------------------------------------------------- /Data Binding/Linq/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Linq/App.xaml -------------------------------------------------------------------------------- /Data Binding/Linq/Linq.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Linq/Linq.csproj -------------------------------------------------------------------------------- /Data Binding/Linq/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Linq/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/Linq/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Linq/MainWindow.xaml -------------------------------------------------------------------------------- /Data Binding/Linq/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Linq/Properties/Resources.resx -------------------------------------------------------------------------------- /Data Binding/Linq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Linq/README.md -------------------------------------------------------------------------------- /Data Binding/Linq/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Linq/Task.cs -------------------------------------------------------------------------------- /Data Binding/Linq/TaskType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Linq/TaskType.cs -------------------------------------------------------------------------------- /Data Binding/Linq/Tasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/Linq/Tasks.cs -------------------------------------------------------------------------------- /Data Binding/MasterDetail/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetail/App.config -------------------------------------------------------------------------------- /Data Binding/MasterDetail/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetail/App.cs -------------------------------------------------------------------------------- /Data Binding/MasterDetail/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetail/App.xaml -------------------------------------------------------------------------------- /Data Binding/MasterDetail/Division.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetail/Division.cs -------------------------------------------------------------------------------- /Data Binding/MasterDetail/DivisionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetail/DivisionList.cs -------------------------------------------------------------------------------- /Data Binding/MasterDetail/League.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetail/League.cs -------------------------------------------------------------------------------- /Data Binding/MasterDetail/LeagueList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetail/LeagueList.cs -------------------------------------------------------------------------------- /Data Binding/MasterDetail/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetail/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/MasterDetail/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetail/MainWindow.xaml -------------------------------------------------------------------------------- /Data Binding/MasterDetail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetail/README.md -------------------------------------------------------------------------------- /Data Binding/MasterDetail/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetail/Team.cs -------------------------------------------------------------------------------- /Data Binding/MasterDetail/TeamList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetail/TeamList.cs -------------------------------------------------------------------------------- /Data Binding/MasterDetailXml/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetailXml/App.config -------------------------------------------------------------------------------- /Data Binding/MasterDetailXml/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetailXml/App.cs -------------------------------------------------------------------------------- /Data Binding/MasterDetailXml/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetailXml/App.xaml -------------------------------------------------------------------------------- /Data Binding/MasterDetailXml/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetailXml/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/MasterDetailXml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MasterDetailXml/README.md -------------------------------------------------------------------------------- /Data Binding/MultiBinding/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MultiBinding/App.config -------------------------------------------------------------------------------- /Data Binding/MultiBinding/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MultiBinding/App.cs -------------------------------------------------------------------------------- /Data Binding/MultiBinding/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MultiBinding/App.xaml -------------------------------------------------------------------------------- /Data Binding/MultiBinding/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MultiBinding/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/MultiBinding/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MultiBinding/MainWindow.xaml -------------------------------------------------------------------------------- /Data Binding/MultiBinding/NameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MultiBinding/NameConverter.cs -------------------------------------------------------------------------------- /Data Binding/MultiBinding/NameList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MultiBinding/NameList.cs -------------------------------------------------------------------------------- /Data Binding/MultiBinding/PersonName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MultiBinding/PersonName.cs -------------------------------------------------------------------------------- /Data Binding/MultiBinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/MultiBinding/README.md -------------------------------------------------------------------------------- /Data Binding/PriorityBinding/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/PriorityBinding/App.config -------------------------------------------------------------------------------- /Data Binding/PriorityBinding/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/PriorityBinding/App.cs -------------------------------------------------------------------------------- /Data Binding/PriorityBinding/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/PriorityBinding/App.xaml -------------------------------------------------------------------------------- /Data Binding/PriorityBinding/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/PriorityBinding/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/PriorityBinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/PriorityBinding/README.md -------------------------------------------------------------------------------- /Data Binding/SimpleBinding/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SimpleBinding/App.config -------------------------------------------------------------------------------- /Data Binding/SimpleBinding/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SimpleBinding/App.cs -------------------------------------------------------------------------------- /Data Binding/SimpleBinding/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SimpleBinding/App.xaml -------------------------------------------------------------------------------- /Data Binding/SimpleBinding/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SimpleBinding/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/SimpleBinding/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SimpleBinding/MainWindow.xaml -------------------------------------------------------------------------------- /Data Binding/SimpleBinding/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SimpleBinding/Person.cs -------------------------------------------------------------------------------- /Data Binding/SimpleBinding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SimpleBinding/README.md -------------------------------------------------------------------------------- /Data Binding/SortFilter/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SortFilter/App.config -------------------------------------------------------------------------------- /Data Binding/SortFilter/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SortFilter/App.cs -------------------------------------------------------------------------------- /Data Binding/SortFilter/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SortFilter/App.xaml -------------------------------------------------------------------------------- /Data Binding/SortFilter/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SortFilter/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/SortFilter/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SortFilter/MainWindow.xaml -------------------------------------------------------------------------------- /Data Binding/SortFilter/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SortFilter/Order.cs -------------------------------------------------------------------------------- /Data Binding/SortFilter/Orders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SortFilter/Orders.cs -------------------------------------------------------------------------------- /Data Binding/SortFilter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SortFilter/README.md -------------------------------------------------------------------------------- /Data Binding/SortFilter/SortFilter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/SortFilter/SortFilter.csproj -------------------------------------------------------------------------------- /Data Binding/UpdateSource/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/UpdateSource/App.config -------------------------------------------------------------------------------- /Data Binding/UpdateSource/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/UpdateSource/App.cs -------------------------------------------------------------------------------- /Data Binding/UpdateSource/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/UpdateSource/App.xaml -------------------------------------------------------------------------------- /Data Binding/UpdateSource/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/UpdateSource/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/UpdateSource/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/UpdateSource/MainWindow.xaml -------------------------------------------------------------------------------- /Data Binding/UpdateSource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/UpdateSource/README.md -------------------------------------------------------------------------------- /Data Binding/UpdateSource/UserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/UpdateSource/UserProfile.cs -------------------------------------------------------------------------------- /Data Binding/ValidateItemSample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/ValidateItemSample/App.config -------------------------------------------------------------------------------- /Data Binding/ValidateItemSample/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/ValidateItemSample/App.cs -------------------------------------------------------------------------------- /Data Binding/ValidateItemSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/ValidateItemSample/App.xaml -------------------------------------------------------------------------------- /Data Binding/ValidateItemSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/ValidateItemSample/README.md -------------------------------------------------------------------------------- /Data Binding/XmlDataSource/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/XmlDataSource/App.config -------------------------------------------------------------------------------- /Data Binding/XmlDataSource/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/XmlDataSource/App.cs -------------------------------------------------------------------------------- /Data Binding/XmlDataSource/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/XmlDataSource/App.xaml -------------------------------------------------------------------------------- /Data Binding/XmlDataSource/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/XmlDataSource/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/XmlDataSource/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/XmlDataSource/MainWindow.xaml -------------------------------------------------------------------------------- /Data Binding/XmlDataSource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/XmlDataSource/README.md -------------------------------------------------------------------------------- /Data Binding/XmlnsBind/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/XmlnsBind/App.config -------------------------------------------------------------------------------- /Data Binding/XmlnsBind/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/XmlnsBind/App.cs -------------------------------------------------------------------------------- /Data Binding/XmlnsBind/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/XmlnsBind/App.xaml -------------------------------------------------------------------------------- /Data Binding/XmlnsBind/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/XmlnsBind/MainWindow.cs -------------------------------------------------------------------------------- /Data Binding/XmlnsBind/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/XmlnsBind/MainWindow.xaml -------------------------------------------------------------------------------- /Data Binding/XmlnsBind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/XmlnsBind/README.md -------------------------------------------------------------------------------- /Data Binding/XmlnsBind/XmlnsBind.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Data Binding/XmlnsBind/XmlnsBind.csproj -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Documents/Flow Content/TableBuilder/app.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Documents/Flow Content/TableBuilder/app.cs -------------------------------------------------------------------------------- /Documents/Flow Content/TableRows/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Documents/Flow Content/TableRows/App.config -------------------------------------------------------------------------------- /Documents/Flow Content/TableRows/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Documents/Flow Content/TableRows/App.cs -------------------------------------------------------------------------------- /Documents/Flow Content/TableRows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Documents/Flow Content/TableRows/App.xaml -------------------------------------------------------------------------------- /Documents/Flow Content/TabularData/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Documents/Flow Content/TabularData/App.cs -------------------------------------------------------------------------------- /Documents/Flow Content/TabularData/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Documents/Flow Content/TabularData/App.xaml -------------------------------------------------------------------------------- /Documents/Spell Checking/CustomDictionaries/CustomDictionary.lex: -------------------------------------------------------------------------------- 1 | brimborion 2 | jabberwocky -------------------------------------------------------------------------------- /Drag and Drop/DragDropDataFormats/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropDataFormats/App.cs -------------------------------------------------------------------------------- /Drag and Drop/DragDropDataFormats/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropDataFormats/App.xaml -------------------------------------------------------------------------------- /Drag and Drop/DragDropDataFormats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropDataFormats/README.md -------------------------------------------------------------------------------- /Drag and Drop/DragDropEvents/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropEvents/App.config -------------------------------------------------------------------------------- /Drag and Drop/DragDropEvents/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropEvents/App.cs -------------------------------------------------------------------------------- /Drag and Drop/DragDropEvents/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropEvents/App.xaml -------------------------------------------------------------------------------- /Drag and Drop/DragDropEvents/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropEvents/MainWindow.cs -------------------------------------------------------------------------------- /Drag and Drop/DragDropEvents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropEvents/README.md -------------------------------------------------------------------------------- /Drag and Drop/DragDropObjects/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropObjects/App.config -------------------------------------------------------------------------------- /Drag and Drop/DragDropObjects/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropObjects/App.cs -------------------------------------------------------------------------------- /Drag and Drop/DragDropObjects/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropObjects/App.xaml -------------------------------------------------------------------------------- /Drag and Drop/DragDropObjects/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropObjects/MainWindow.cs -------------------------------------------------------------------------------- /Drag and Drop/DragDropObjects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropObjects/README.md -------------------------------------------------------------------------------- /Drag and Drop/DragDropOpenTextFile/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropOpenTextFile/App.cs -------------------------------------------------------------------------------- /Drag and Drop/DragDropOpenTextFile/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropOpenTextFile/App.xaml -------------------------------------------------------------------------------- /Drag and Drop/DragDropTextOps/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropTextOps/App.config -------------------------------------------------------------------------------- /Drag and Drop/DragDropTextOps/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropTextOps/App.cs -------------------------------------------------------------------------------- /Drag and Drop/DragDropTextOps/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropTextOps/App.xaml -------------------------------------------------------------------------------- /Drag and Drop/DragDropTextOps/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropTextOps/MainWindow.cs -------------------------------------------------------------------------------- /Drag and Drop/DragDropTextOps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropTextOps/README.md -------------------------------------------------------------------------------- /Drag and Drop/DragDropThumbOps/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropThumbOps/App.config -------------------------------------------------------------------------------- /Drag and Drop/DragDropThumbOps/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropThumbOps/App.cs -------------------------------------------------------------------------------- /Drag and Drop/DragDropThumbOps/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropThumbOps/App.xaml -------------------------------------------------------------------------------- /Drag and Drop/DragDropThumbOps/Pane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropThumbOps/Pane.cs -------------------------------------------------------------------------------- /Drag and Drop/DragDropThumbOps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Drag and Drop/DragDropThumbOps/README.md -------------------------------------------------------------------------------- /Element Tree/OverridingLogicalTree/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Element Tree/OverridingLogicalTree/App.cs -------------------------------------------------------------------------------- /Element Tree/OverridingLogicalTree/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Element Tree/OverridingLogicalTree/App.xaml -------------------------------------------------------------------------------- /Element Tree/SearchingForElement/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Element Tree/SearchingForElement/App.config -------------------------------------------------------------------------------- /Element Tree/SearchingForElement/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Element Tree/SearchingForElement/App.cs -------------------------------------------------------------------------------- /Element Tree/SearchingForElement/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Element Tree/SearchingForElement/App.xaml -------------------------------------------------------------------------------- /Element Tree/SearchingForElement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Element Tree/SearchingForElement/README.md -------------------------------------------------------------------------------- /Elements/ContextMenuOpening/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/ContextMenuOpening/App.config -------------------------------------------------------------------------------- /Elements/ContextMenuOpening/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/ContextMenuOpening/App.cs -------------------------------------------------------------------------------- /Elements/ContextMenuOpening/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/ContextMenuOpening/App.xaml -------------------------------------------------------------------------------- /Elements/ContextMenuOpening/MyButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/ContextMenuOpening/MyButton.cs -------------------------------------------------------------------------------- /Elements/ContextMenuOpening/Pane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/ContextMenuOpening/Pane.cs -------------------------------------------------------------------------------- /Elements/ContextMenuOpening/Pane.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/ContextMenuOpening/Pane.xaml -------------------------------------------------------------------------------- /Elements/ContextMenuOpening/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/ContextMenuOpening/README.md -------------------------------------------------------------------------------- /Elements/FindingElementInPanel/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/FindingElementInPanel/App.config -------------------------------------------------------------------------------- /Elements/FindingElementInPanel/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/FindingElementInPanel/App.cs -------------------------------------------------------------------------------- /Elements/FindingElementInPanel/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/FindingElementInPanel/App.xaml -------------------------------------------------------------------------------- /Elements/FindingElementInPanel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/FindingElementInPanel/README.md -------------------------------------------------------------------------------- /Elements/FocusVisualStyle/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/FocusVisualStyle/App.config -------------------------------------------------------------------------------- /Elements/FocusVisualStyle/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/FocusVisualStyle/App.cs -------------------------------------------------------------------------------- /Elements/FocusVisualStyle/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/FocusVisualStyle/App.xaml -------------------------------------------------------------------------------- /Elements/FocusVisualStyle/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/FocusVisualStyle/MainWindow.cs -------------------------------------------------------------------------------- /Elements/FocusVisualStyle/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/FocusVisualStyle/MainWindow.xaml -------------------------------------------------------------------------------- /Elements/FocusVisualStyle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/FocusVisualStyle/README.md -------------------------------------------------------------------------------- /Elements/HeightProperties/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/HeightProperties/App.config -------------------------------------------------------------------------------- /Elements/HeightProperties/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/HeightProperties/App.cs -------------------------------------------------------------------------------- /Elements/HeightProperties/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/HeightProperties/App.xaml -------------------------------------------------------------------------------- /Elements/HeightProperties/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/HeightProperties/MainWindow.cs -------------------------------------------------------------------------------- /Elements/HeightProperties/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/HeightProperties/MainWindow.xaml -------------------------------------------------------------------------------- /Elements/HeightProperties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/HeightProperties/README.md -------------------------------------------------------------------------------- /Elements/LoadedEvent/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/LoadedEvent/App.config -------------------------------------------------------------------------------- /Elements/LoadedEvent/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/LoadedEvent/App.cs -------------------------------------------------------------------------------- /Elements/LoadedEvent/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/LoadedEvent/App.xaml -------------------------------------------------------------------------------- /Elements/LoadedEvent/LoadedEvent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/LoadedEvent/LoadedEvent.csproj -------------------------------------------------------------------------------- /Elements/LoadedEvent/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/LoadedEvent/MainWindow.cs -------------------------------------------------------------------------------- /Elements/LoadedEvent/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/LoadedEvent/MainWindow.xaml -------------------------------------------------------------------------------- /Elements/LoadedEvent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/LoadedEvent/README.md -------------------------------------------------------------------------------- /Elements/SettingMargins/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/SettingMargins/App.config -------------------------------------------------------------------------------- /Elements/SettingMargins/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/SettingMargins/App.cs -------------------------------------------------------------------------------- /Elements/SettingMargins/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/SettingMargins/App.xaml -------------------------------------------------------------------------------- /Elements/SettingMargins/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/SettingMargins/MainWindow.cs -------------------------------------------------------------------------------- /Elements/SettingMargins/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/SettingMargins/MainWindow.xaml -------------------------------------------------------------------------------- /Elements/SettingMargins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/SettingMargins/README.md -------------------------------------------------------------------------------- /Elements/ThicknessConverter/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/ThicknessConverter/App.config -------------------------------------------------------------------------------- /Elements/ThicknessConverter/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/ThicknessConverter/App.cs -------------------------------------------------------------------------------- /Elements/ThicknessConverter/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/ThicknessConverter/App.xaml -------------------------------------------------------------------------------- /Elements/ThicknessConverter/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/ThicknessConverter/MainWindow.cs -------------------------------------------------------------------------------- /Elements/ThicknessConverter/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/ThicknessConverter/MainWindow.xaml -------------------------------------------------------------------------------- /Elements/ThicknessConverter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/ThicknessConverter/README.md -------------------------------------------------------------------------------- /Elements/UsingElements/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/UsingElements/App.config -------------------------------------------------------------------------------- /Elements/UsingElements/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/UsingElements/App.cs -------------------------------------------------------------------------------- /Elements/UsingElements/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/UsingElements/App.xaml -------------------------------------------------------------------------------- /Elements/UsingElements/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/UsingElements/MainWindow.cs -------------------------------------------------------------------------------- /Elements/UsingElements/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/UsingElements/MainWindow.xaml -------------------------------------------------------------------------------- /Elements/UsingElements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/UsingElements/README.md -------------------------------------------------------------------------------- /Elements/UsingElements/UsingElements.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/UsingElements/UsingElements.csproj -------------------------------------------------------------------------------- /Elements/VisibiltyChanges/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/VisibiltyChanges/App.config -------------------------------------------------------------------------------- /Elements/VisibiltyChanges/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/VisibiltyChanges/App.cs -------------------------------------------------------------------------------- /Elements/VisibiltyChanges/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/VisibiltyChanges/App.xaml -------------------------------------------------------------------------------- /Elements/VisibiltyChanges/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/VisibiltyChanges/MainWindow.cs -------------------------------------------------------------------------------- /Elements/VisibiltyChanges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/VisibiltyChanges/README.md -------------------------------------------------------------------------------- /Elements/WidthProperties/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/WidthProperties/App.config -------------------------------------------------------------------------------- /Elements/WidthProperties/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/WidthProperties/App.cs -------------------------------------------------------------------------------- /Elements/WidthProperties/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/WidthProperties/App.xaml -------------------------------------------------------------------------------- /Elements/WidthProperties/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/WidthProperties/MainWindow.cs -------------------------------------------------------------------------------- /Elements/WidthProperties/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/WidthProperties/MainWindow.xaml -------------------------------------------------------------------------------- /Elements/WidthProperties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Elements/WidthProperties/README.md -------------------------------------------------------------------------------- /Events/AddingEventHandler/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/AddingEventHandler/App.config -------------------------------------------------------------------------------- /Events/AddingEventHandler/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/AddingEventHandler/App.cs -------------------------------------------------------------------------------- /Events/AddingEventHandler/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/AddingEventHandler/App.xaml -------------------------------------------------------------------------------- /Events/AddingEventHandler/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/AddingEventHandler/MainWindow.cs -------------------------------------------------------------------------------- /Events/AddingEventHandler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/AddingEventHandler/README.md -------------------------------------------------------------------------------- /Events/CustomRoutedEvents/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/CustomRoutedEvents/App.config -------------------------------------------------------------------------------- /Events/CustomRoutedEvents/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/CustomRoutedEvents/App.cs -------------------------------------------------------------------------------- /Events/CustomRoutedEvents/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/CustomRoutedEvents/App.xaml -------------------------------------------------------------------------------- /Events/CustomRoutedEvents/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/CustomRoutedEvents/MainWindow.cs -------------------------------------------------------------------------------- /Events/CustomRoutedEvents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/CustomRoutedEvents/README.md -------------------------------------------------------------------------------- /Events/FindingSourceElement/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/FindingSourceElement/App.config -------------------------------------------------------------------------------- /Events/FindingSourceElement/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/FindingSourceElement/App.cs -------------------------------------------------------------------------------- /Events/FindingSourceElement/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/FindingSourceElement/App.xaml -------------------------------------------------------------------------------- /Events/FindingSourceElement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/FindingSourceElement/README.md -------------------------------------------------------------------------------- /Events/RoutedEventHandling/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/RoutedEventHandling/App.config -------------------------------------------------------------------------------- /Events/RoutedEventHandling/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/RoutedEventHandling/App.cs -------------------------------------------------------------------------------- /Events/RoutedEventHandling/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/RoutedEventHandling/App.xaml -------------------------------------------------------------------------------- /Events/RoutedEventHandling/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/RoutedEventHandling/MainWindow.cs -------------------------------------------------------------------------------- /Events/RoutedEventHandling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Events/RoutedEventHandling/README.md -------------------------------------------------------------------------------- /Getting Started/ComplexLayout/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/ComplexLayout/App.config -------------------------------------------------------------------------------- /Getting Started/ComplexLayout/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/ComplexLayout/App.cs -------------------------------------------------------------------------------- /Getting Started/ComplexLayout/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/ComplexLayout/App.xaml -------------------------------------------------------------------------------- /Getting Started/ComplexLayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/ComplexLayout/README.md -------------------------------------------------------------------------------- /Getting Started/Concepts/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/Concepts/App.config -------------------------------------------------------------------------------- /Getting Started/Concepts/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/Concepts/App.xaml -------------------------------------------------------------------------------- /Getting Started/Concepts/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/Concepts/App.xaml.cs -------------------------------------------------------------------------------- /Getting Started/Concepts/Concepts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/Concepts/Concepts.csproj -------------------------------------------------------------------------------- /Getting Started/Concepts/Default.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/Concepts/Default.xaml -------------------------------------------------------------------------------- /Getting Started/Concepts/Default.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/Concepts/Default.xaml.cs -------------------------------------------------------------------------------- /Getting Started/Concepts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/Concepts/README.md -------------------------------------------------------------------------------- /Getting Started/Concepts/TOC.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/Concepts/TOC.xaml -------------------------------------------------------------------------------- /Getting Started/Concepts/Welcome.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/Concepts/Welcome.xaml -------------------------------------------------------------------------------- /Getting Started/Concepts/images/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/Concepts/images/cat.png -------------------------------------------------------------------------------- /Getting Started/Concepts/images/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/Concepts/images/dog.png -------------------------------------------------------------------------------- /Getting Started/Concepts/images/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/Concepts/images/fish.png -------------------------------------------------------------------------------- /Getting Started/Concepts/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/Concepts/images/help.gif -------------------------------------------------------------------------------- /Getting Started/Concepts/welcome.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/Concepts/welcome.xaml.cs -------------------------------------------------------------------------------- /Getting Started/DynamicLayout/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/DynamicLayout/App.config -------------------------------------------------------------------------------- /Getting Started/DynamicLayout/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/DynamicLayout/App.cs -------------------------------------------------------------------------------- /Getting Started/DynamicLayout/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/DynamicLayout/App.xaml -------------------------------------------------------------------------------- /Getting Started/DynamicLayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/DynamicLayout/README.md -------------------------------------------------------------------------------- /Getting Started/GettingStarted.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/GettingStarted.sln -------------------------------------------------------------------------------- /Getting Started/HelloWorld/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/HelloWorld/App.config -------------------------------------------------------------------------------- /Getting Started/HelloWorld/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/HelloWorld/App.cs -------------------------------------------------------------------------------- /Getting Started/HelloWorld/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/HelloWorld/App.xaml -------------------------------------------------------------------------------- /Getting Started/HelloWorld/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/HelloWorld/MainWindow.cs -------------------------------------------------------------------------------- /Getting Started/HelloWorld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/HelloWorld/README.md -------------------------------------------------------------------------------- /Getting Started/HelloWorld/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/HelloWorld/app.ico -------------------------------------------------------------------------------- /Getting Started/MultiPage/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/MultiPage/App.config -------------------------------------------------------------------------------- /Getting Started/MultiPage/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/MultiPage/App.cs -------------------------------------------------------------------------------- /Getting Started/MultiPage/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/MultiPage/App.xaml -------------------------------------------------------------------------------- /Getting Started/MultiPage/Page1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/MultiPage/Page1.xaml -------------------------------------------------------------------------------- /Getting Started/MultiPage/Page2.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/MultiPage/Page2.xaml -------------------------------------------------------------------------------- /Getting Started/MultiPage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/MultiPage/README.md -------------------------------------------------------------------------------- /Getting Started/SimpleLayout/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/SimpleLayout/App.config -------------------------------------------------------------------------------- /Getting Started/SimpleLayout/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/SimpleLayout/App.cs -------------------------------------------------------------------------------- /Getting Started/SimpleLayout/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/SimpleLayout/App.xaml -------------------------------------------------------------------------------- /Getting Started/SimpleLayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Getting Started/SimpleLayout/README.md -------------------------------------------------------------------------------- /Graphics/2DTransforms/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/2DTransforms/App.config -------------------------------------------------------------------------------- /Graphics/2DTransforms/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/2DTransforms/App.cs -------------------------------------------------------------------------------- /Graphics/2DTransforms/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/2DTransforms/App.xaml -------------------------------------------------------------------------------- /Graphics/2DTransforms/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/2DTransforms/MainWindow.cs -------------------------------------------------------------------------------- /Graphics/2DTransforms/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/2DTransforms/MainWindow.xaml -------------------------------------------------------------------------------- /Graphics/2DTransforms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/2DTransforms/README.md -------------------------------------------------------------------------------- /Graphics/AITCodec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/README.md -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/aitcodec.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/aitcodec.def -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/aitcodec.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/aitcodec.sln -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/aitcodec.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/aitcodec.vcproj -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/aitcodec.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/aitcodec.vcxproj -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/aitdecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/aitdecoder.cpp -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/aitdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/aitdecoder.h -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/aitencoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/aitencoder.cpp -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/aitencoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/aitencoder.h -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/basedecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/basedecoder.cpp -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/basedecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/basedecoder.h -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/baseencoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/baseencoder.cpp -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/baseencoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/baseencoder.h -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/classfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/classfactory.h -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/main.cpp -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/precomp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/precomp.hpp -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/readme.html -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/unknownimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/unknownimpl.h -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/utility.cpp -------------------------------------------------------------------------------- /Graphics/AITCodec/cpp/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/cpp/utility.h -------------------------------------------------------------------------------- /Graphics/AITCodec/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/AITCodec/readme.htm -------------------------------------------------------------------------------- /Graphics/BMPEncoderAndDecoder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/BMPEncoderAndDecoder/App.config -------------------------------------------------------------------------------- /Graphics/BMPEncoderAndDecoder/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/BMPEncoderAndDecoder/App.cs -------------------------------------------------------------------------------- /Graphics/BMPEncoderAndDecoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/BMPEncoderAndDecoder/README.md -------------------------------------------------------------------------------- /Graphics/BitmapEffectsGallery/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/BitmapEffectsGallery/App.config -------------------------------------------------------------------------------- /Graphics/BitmapEffectsGallery/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/BitmapEffectsGallery/App.cs -------------------------------------------------------------------------------- /Graphics/BitmapEffectsGallery/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/BitmapEffectsGallery/App.xaml -------------------------------------------------------------------------------- /Graphics/BitmapEffectsGallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/BitmapEffectsGallery/README.md -------------------------------------------------------------------------------- /Graphics/BitmapMetadata/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/BitmapMetadata/App.config -------------------------------------------------------------------------------- /Graphics/BitmapMetadata/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/BitmapMetadata/App.cs -------------------------------------------------------------------------------- /Graphics/BitmapMetadata/EntryClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/BitmapMetadata/EntryClass.cs -------------------------------------------------------------------------------- /Graphics/BitmapMetadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/BitmapMetadata/README.md -------------------------------------------------------------------------------- /Graphics/BitmapMetadata/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/BitmapMetadata/smiley.png -------------------------------------------------------------------------------- /Graphics/Brushes/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Brushes/App.config -------------------------------------------------------------------------------- /Graphics/Brushes/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Brushes/App.cs -------------------------------------------------------------------------------- /Graphics/Brushes/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Brushes/App.xaml -------------------------------------------------------------------------------- /Graphics/Brushes/BrushTypesExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Brushes/BrushTypesExample.xaml -------------------------------------------------------------------------------- /Graphics/Brushes/Brushes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Brushes/Brushes.csproj -------------------------------------------------------------------------------- /Graphics/Brushes/DashExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Brushes/DashExample.xaml -------------------------------------------------------------------------------- /Graphics/Brushes/PredefinedBrushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Brushes/PredefinedBrushes.xaml -------------------------------------------------------------------------------- /Graphics/Brushes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Brushes/README.md -------------------------------------------------------------------------------- /Graphics/Brushes/SampleViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Brushes/SampleViewer.cs -------------------------------------------------------------------------------- /Graphics/Brushes/SampleViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Brushes/SampleViewer.xaml -------------------------------------------------------------------------------- /Graphics/Brushes/sampleimages/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Brushes/sampleimages/clouds.png -------------------------------------------------------------------------------- /Graphics/Brushes/sampleimages/steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Brushes/sampleimages/steel.png -------------------------------------------------------------------------------- /Graphics/Brushes/sampleimages/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Brushes/sampleimages/sunset.jpg -------------------------------------------------------------------------------- /Graphics/Brushes/samplemedia/xbox.wmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Brushes/samplemedia/xbox.wmv -------------------------------------------------------------------------------- /Graphics/Brushes/sampleresources/toc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Brushes/sampleresources/toc.xml -------------------------------------------------------------------------------- /Graphics/ClipRegion/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ClipRegion/App.config -------------------------------------------------------------------------------- /Graphics/ClipRegion/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ClipRegion/App.cs -------------------------------------------------------------------------------- /Graphics/ClipRegion/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ClipRegion/App.xaml -------------------------------------------------------------------------------- /Graphics/ClipRegion/ClipExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ClipRegion/ClipExample.xaml -------------------------------------------------------------------------------- /Graphics/ClipRegion/ClipRegion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ClipRegion/ClipRegion.csproj -------------------------------------------------------------------------------- /Graphics/ClipRegion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ClipRegion/README.md -------------------------------------------------------------------------------- /Graphics/Converter/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Converter/App.config -------------------------------------------------------------------------------- /Graphics/Converter/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Converter/App.cs -------------------------------------------------------------------------------- /Graphics/Converter/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Converter/App.xaml -------------------------------------------------------------------------------- /Graphics/Converter/Converter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Converter/Converter.csproj -------------------------------------------------------------------------------- /Graphics/Converter/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Converter/MainWindow.cs -------------------------------------------------------------------------------- /Graphics/Converter/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Converter/MainWindow.xaml -------------------------------------------------------------------------------- /Graphics/Converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Converter/README.md -------------------------------------------------------------------------------- /Graphics/CustomBitmapEffect/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/CustomBitmapEffect/App.config -------------------------------------------------------------------------------- /Graphics/CustomBitmapEffect/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/CustomBitmapEffect/App.xaml -------------------------------------------------------------------------------- /Graphics/CustomBitmapEffect/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/CustomBitmapEffect/App.xaml.cs -------------------------------------------------------------------------------- /Graphics/CustomBitmapEffect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/CustomBitmapEffect/README.md -------------------------------------------------------------------------------- /Graphics/DrawingBrush/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/DrawingBrush/App.config -------------------------------------------------------------------------------- /Graphics/DrawingBrush/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/DrawingBrush/App.cs -------------------------------------------------------------------------------- /Graphics/DrawingBrush/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/DrawingBrush/App.xaml -------------------------------------------------------------------------------- /Graphics/DrawingBrush/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/DrawingBrush/README.md -------------------------------------------------------------------------------- /Graphics/DrawingBrush/SampleViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/DrawingBrush/SampleViewer.cs -------------------------------------------------------------------------------- /Graphics/DrawingBrush/SampleViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/DrawingBrush/SampleViewer.xaml -------------------------------------------------------------------------------- /Graphics/GIFEncoderAndDecoder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/GIFEncoderAndDecoder/App.config -------------------------------------------------------------------------------- /Graphics/GIFEncoderAndDecoder/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/GIFEncoderAndDecoder/App.cs -------------------------------------------------------------------------------- /Graphics/GIFEncoderAndDecoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/GIFEncoderAndDecoder/README.md -------------------------------------------------------------------------------- /Graphics/Geometries/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Geometries/App.config -------------------------------------------------------------------------------- /Graphics/Geometries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Geometries/README.md -------------------------------------------------------------------------------- /Graphics/Geometry/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Geometry/App.config -------------------------------------------------------------------------------- /Graphics/Geometry/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Geometry/App.cs -------------------------------------------------------------------------------- /Graphics/Geometry/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Geometry/App.xaml -------------------------------------------------------------------------------- /Graphics/Geometry/Geometry.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Geometry/Geometry.csproj -------------------------------------------------------------------------------- /Graphics/Geometry/PathGeometryExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Geometry/PathGeometryExample.cs -------------------------------------------------------------------------------- /Graphics/Geometry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Geometry/README.md -------------------------------------------------------------------------------- /Graphics/Geometry/SampleViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Geometry/SampleViewer.cs -------------------------------------------------------------------------------- /Graphics/Geometry/SampleViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Geometry/SampleViewer.xaml -------------------------------------------------------------------------------- /Graphics/ImageBrush/AlignmentExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageBrush/AlignmentExample.cs -------------------------------------------------------------------------------- /Graphics/ImageBrush/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageBrush/App.config -------------------------------------------------------------------------------- /Graphics/ImageBrush/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageBrush/App.cs -------------------------------------------------------------------------------- /Graphics/ImageBrush/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageBrush/App.xaml -------------------------------------------------------------------------------- /Graphics/ImageBrush/ImageBrush.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageBrush/ImageBrush.csproj -------------------------------------------------------------------------------- /Graphics/ImageBrush/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageBrush/README.md -------------------------------------------------------------------------------- /Graphics/ImageBrush/SampleViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageBrush/SampleViewer.cs -------------------------------------------------------------------------------- /Graphics/ImageBrush/SampleViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageBrush/SampleViewer.xaml -------------------------------------------------------------------------------- /Graphics/ImageBrush/StretchModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageBrush/StretchModes.cs -------------------------------------------------------------------------------- /Graphics/ImageBrush/StretchModes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageBrush/StretchModes.xaml -------------------------------------------------------------------------------- /Graphics/ImageBrush/TextFillsExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageBrush/TextFillsExample.cs -------------------------------------------------------------------------------- /Graphics/ImageBrush/TileSizeExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageBrush/TileSizeExample.cs -------------------------------------------------------------------------------- /Graphics/ImageBrush/TileSizeExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageBrush/TileSizeExample.xaml -------------------------------------------------------------------------------- /Graphics/ImageBrush/TilingExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageBrush/TilingExample.cs -------------------------------------------------------------------------------- /Graphics/ImageBrush/TilingExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageBrush/TilingExample.xaml -------------------------------------------------------------------------------- /Graphics/ImageView/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageView/App.config -------------------------------------------------------------------------------- /Graphics/ImageView/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageView/App.cs -------------------------------------------------------------------------------- /Graphics/ImageView/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageView/App.xaml -------------------------------------------------------------------------------- /Graphics/ImageView/ImageView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageView/ImageView.csproj -------------------------------------------------------------------------------- /Graphics/ImageView/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageView/MainWindow.cs -------------------------------------------------------------------------------- /Graphics/ImageView/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageView/MainWindow.xaml -------------------------------------------------------------------------------- /Graphics/ImageView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageView/README.md -------------------------------------------------------------------------------- /Graphics/ImageView/mydata/blue hills.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageView/mydata/blue hills.jpg -------------------------------------------------------------------------------- /Graphics/ImageView/mydata/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageView/mydata/sunset.jpg -------------------------------------------------------------------------------- /Graphics/ImageView/mydata/winter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ImageView/mydata/winter.jpg -------------------------------------------------------------------------------- /Graphics/JPEGEncoderAndDecoder/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/JPEGEncoderAndDecoder/App.cs -------------------------------------------------------------------------------- /Graphics/JPEGEncoderAndDecoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/JPEGEncoderAndDecoder/README.md -------------------------------------------------------------------------------- /Graphics/Matrix/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Matrix/App.config -------------------------------------------------------------------------------- /Graphics/Matrix/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Matrix/App.cs -------------------------------------------------------------------------------- /Graphics/Matrix/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Matrix/App.xaml -------------------------------------------------------------------------------- /Graphics/Matrix/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Matrix/MainWindow.cs -------------------------------------------------------------------------------- /Graphics/Matrix/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Matrix/MainWindow.xaml -------------------------------------------------------------------------------- /Graphics/Matrix/Matrix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Matrix/Matrix.csproj -------------------------------------------------------------------------------- /Graphics/Matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Matrix/README.md -------------------------------------------------------------------------------- /Graphics/OpacityMasking/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/OpacityMasking/App.config -------------------------------------------------------------------------------- /Graphics/OpacityMasking/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/OpacityMasking/App.cs -------------------------------------------------------------------------------- /Graphics/OpacityMasking/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/OpacityMasking/App.xaml -------------------------------------------------------------------------------- /Graphics/OpacityMasking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/OpacityMasking/README.md -------------------------------------------------------------------------------- /Graphics/PNGEncoderAndDecoder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/PNGEncoderAndDecoder/App.config -------------------------------------------------------------------------------- /Graphics/PNGEncoderAndDecoder/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/PNGEncoderAndDecoder/App.cs -------------------------------------------------------------------------------- /Graphics/PNGEncoderAndDecoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/PNGEncoderAndDecoder/README.md -------------------------------------------------------------------------------- /Graphics/PNGEncoderAndDecoder/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/PNGEncoderAndDecoder/smiley.png -------------------------------------------------------------------------------- /Graphics/Point/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Point/App.config -------------------------------------------------------------------------------- /Graphics/Point/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Point/App.cs -------------------------------------------------------------------------------- /Graphics/Point/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Point/App.xaml -------------------------------------------------------------------------------- /Graphics/Point/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Point/MainWindow.cs -------------------------------------------------------------------------------- /Graphics/Point/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Point/MainWindow.xaml -------------------------------------------------------------------------------- /Graphics/Point/Point.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Point/Point.csproj -------------------------------------------------------------------------------- /Graphics/Point/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Point/Properties/Resources.resx -------------------------------------------------------------------------------- /Graphics/Point/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Point/README.md -------------------------------------------------------------------------------- /Graphics/ShapeElements/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapeElements/App.config -------------------------------------------------------------------------------- /Graphics/ShapeElements/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapeElements/App.cs -------------------------------------------------------------------------------- /Graphics/ShapeElements/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapeElements/App.xaml -------------------------------------------------------------------------------- /Graphics/ShapeElements/EllipseExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapeElements/EllipseExample.cs -------------------------------------------------------------------------------- /Graphics/ShapeElements/LineExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapeElements/LineExample.cs -------------------------------------------------------------------------------- /Graphics/ShapeElements/LineExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapeElements/LineExample.xaml -------------------------------------------------------------------------------- /Graphics/ShapeElements/PathExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapeElements/PathExample.cs -------------------------------------------------------------------------------- /Graphics/ShapeElements/PathExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapeElements/PathExample.xaml -------------------------------------------------------------------------------- /Graphics/ShapeElements/PolygonExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapeElements/PolygonExample.cs -------------------------------------------------------------------------------- /Graphics/ShapeElements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapeElements/README.md -------------------------------------------------------------------------------- /Graphics/ShapeElements/SampleViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapeElements/SampleViewer.cs -------------------------------------------------------------------------------- /Graphics/ShapeElements/SampleViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapeElements/SampleViewer.xaml -------------------------------------------------------------------------------- /Graphics/ShapeElements/ShapeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapeElements/ShapeTypes.cs -------------------------------------------------------------------------------- /Graphics/ShapeElements/ShapeTypes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapeElements/ShapeTypes.xaml -------------------------------------------------------------------------------- /Graphics/ShapeElements/StretchExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapeElements/StretchExample.cs -------------------------------------------------------------------------------- /Graphics/ShapesGallery/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapesGallery/App.config -------------------------------------------------------------------------------- /Graphics/ShapesGallery/EntryClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapesGallery/EntryClass.cs -------------------------------------------------------------------------------- /Graphics/ShapesGallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapesGallery/README.md -------------------------------------------------------------------------------- /Graphics/ShapesGallery/app.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/ShapesGallery/app.cs -------------------------------------------------------------------------------- /Graphics/SystemBrushesAndColors/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/SystemBrushesAndColors/App.cs -------------------------------------------------------------------------------- /Graphics/SystemBrushesAndColors/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/SystemBrushesAndColors/App.xaml -------------------------------------------------------------------------------- /Graphics/TIFFEncoderAndDecoder/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/TIFFEncoderAndDecoder/App.cs -------------------------------------------------------------------------------- /Graphics/TIFFEncoderAndDecoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/TIFFEncoderAndDecoder/README.md -------------------------------------------------------------------------------- /Graphics/Vector/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Vector/App.config -------------------------------------------------------------------------------- /Graphics/Vector/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Vector/App.cs -------------------------------------------------------------------------------- /Graphics/Vector/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Vector/App.xaml -------------------------------------------------------------------------------- /Graphics/Vector/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Vector/MainWindow.cs -------------------------------------------------------------------------------- /Graphics/Vector/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Vector/MainWindow.xaml -------------------------------------------------------------------------------- /Graphics/Vector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Vector/README.md -------------------------------------------------------------------------------- /Graphics/Vector/Vector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/Vector/Vector.csproj -------------------------------------------------------------------------------- /Graphics/VisualBrush/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/VisualBrush/App.config -------------------------------------------------------------------------------- /Graphics/VisualBrush/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/VisualBrush/App.cs -------------------------------------------------------------------------------- /Graphics/VisualBrush/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/VisualBrush/App.xaml -------------------------------------------------------------------------------- /Graphics/VisualBrush/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/VisualBrush/README.md -------------------------------------------------------------------------------- /Graphics/VisualBrush/SampleViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/VisualBrush/SampleViewer.cs -------------------------------------------------------------------------------- /Graphics/VisualBrush/SampleViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/VisualBrush/SampleViewer.xaml -------------------------------------------------------------------------------- /Graphics/VisualBrush/VisualBrush.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/VisualBrush/VisualBrush.csproj -------------------------------------------------------------------------------- /Graphics/WDPEncoderAndDecoder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/WDPEncoderAndDecoder/App.config -------------------------------------------------------------------------------- /Graphics/WDPEncoderAndDecoder/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/WDPEncoderAndDecoder/App.cs -------------------------------------------------------------------------------- /Graphics/WDPEncoderAndDecoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Graphics/WDPEncoderAndDecoder/README.md -------------------------------------------------------------------------------- /Input and Commands/CursorType/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Input and Commands/CursorType/App.config -------------------------------------------------------------------------------- /Input and Commands/CursorType/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Input and Commands/CursorType/App.cs -------------------------------------------------------------------------------- /Input and Commands/CursorType/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Input and Commands/CursorType/App.xaml -------------------------------------------------------------------------------- /Input and Commands/CursorType/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Input and Commands/CursorType/README.md -------------------------------------------------------------------------------- /Input and Commands/KeyboardKey/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Input and Commands/KeyboardKey/App.cs -------------------------------------------------------------------------------- /Input and Commands/KeyboardKey/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Input and Commands/KeyboardKey/App.xaml -------------------------------------------------------------------------------- /Input and Commands/KeyboardKey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Input and Commands/KeyboardKey/README.md -------------------------------------------------------------------------------- /Input and Commands/MousePointer/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Input and Commands/MousePointer/App.cs -------------------------------------------------------------------------------- /Input and Commands/MousePointer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Input and Commands/MousePointer/App.xaml -------------------------------------------------------------------------------- /Input and Commands/MouseState/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Input and Commands/MouseState/App.config -------------------------------------------------------------------------------- /Input and Commands/MouseState/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Input and Commands/MouseState/App.cs -------------------------------------------------------------------------------- /Input and Commands/MouseState/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Input and Commands/MouseState/App.xaml -------------------------------------------------------------------------------- /Input and Commands/MouseState/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Input and Commands/MouseState/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/LICENSE -------------------------------------------------------------------------------- /Migration and Interoperability/WPFWithWFAndDatabinding/northwinddataset.xsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Migration and Interoperability/WPFWithWFAndDatabinding/northwinddataset.xss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Migration and Interoperability/Win32Clock/win32clock/win32clock.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/NuGet.config -------------------------------------------------------------------------------- /PerMonitorDPI/ImageScaling/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/PerMonitorDPI/ImageScaling/App.config -------------------------------------------------------------------------------- /PerMonitorDPI/ImageScaling/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/PerMonitorDPI/ImageScaling/App.xaml -------------------------------------------------------------------------------- /PerMonitorDPI/ImageScaling/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/PerMonitorDPI/ImageScaling/App.xaml.cs -------------------------------------------------------------------------------- /PerMonitorDPI/ImageScaling/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/PerMonitorDPI/ImageScaling/app.manifest -------------------------------------------------------------------------------- /PerMonitorDPI/TextFormatting/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/PerMonitorDPI/TextFormatting/App.config -------------------------------------------------------------------------------- /PerMonitorDPI/TextFormatting/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/PerMonitorDPI/TextFormatting/App.xaml -------------------------------------------------------------------------------- /PerMonitorDPI/TextFormatting/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/PerMonitorDPI/TextFormatting/App.xaml.cs -------------------------------------------------------------------------------- /PerMonitorDPI/WinFormsHost/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/PerMonitorDPI/WinFormsHost/App.config -------------------------------------------------------------------------------- /PerMonitorDPI/WinFormsHost/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/PerMonitorDPI/WinFormsHost/App.xaml -------------------------------------------------------------------------------- /PerMonitorDPI/WinFormsHost/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/PerMonitorDPI/WinFormsHost/App.xaml.cs -------------------------------------------------------------------------------- /PerMonitorDPI/WinFormsHost/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/PerMonitorDPI/WinFormsHost/app.manifest -------------------------------------------------------------------------------- /PerMonitorDPI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/PerMonitorDPI/readme.md -------------------------------------------------------------------------------- /Properties/Callbacks/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Properties/Callbacks/App.config -------------------------------------------------------------------------------- /Properties/Callbacks/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Properties/Callbacks/App.cs -------------------------------------------------------------------------------- /Properties/Callbacks/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Properties/Callbacks/App.xaml -------------------------------------------------------------------------------- /Properties/Callbacks/Callbacks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Properties/Callbacks/Callbacks.csproj -------------------------------------------------------------------------------- /Properties/Callbacks/Gauge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Properties/Callbacks/Gauge.cs -------------------------------------------------------------------------------- /Properties/Callbacks/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Properties/Callbacks/MainWindow.cs -------------------------------------------------------------------------------- /Properties/Callbacks/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Properties/Callbacks/MainWindow.xaml -------------------------------------------------------------------------------- /Properties/Callbacks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Properties/Callbacks/README.md -------------------------------------------------------------------------------- /Properties/CustomClassesWithDP/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Properties/CustomClassesWithDP/App.cs -------------------------------------------------------------------------------- /Properties/CustomClassesWithDP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Properties/CustomClassesWithDP/App.xaml -------------------------------------------------------------------------------- /Properties/CustomClassesWithDP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Properties/CustomClassesWithDP/README.md -------------------------------------------------------------------------------- /Properties/CustomClassesWithDP/Shirt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Properties/CustomClassesWithDP/Shirt.cs -------------------------------------------------------------------------------- /Properties/RestoringDefaultValues/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Properties/RestoringDefaultValues/App.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/README.md -------------------------------------------------------------------------------- /Resources/ApplicationResources/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Resources/ApplicationResources/App.cs -------------------------------------------------------------------------------- /Resources/ApplicationResources/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Resources/ApplicationResources/App.xaml -------------------------------------------------------------------------------- /Resources/ApplicationResources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Resources/ApplicationResources/README.md -------------------------------------------------------------------------------- /Resources/DefiningResources/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Resources/DefiningResources/App.config -------------------------------------------------------------------------------- /Resources/DefiningResources/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Resources/DefiningResources/App.cs -------------------------------------------------------------------------------- /Resources/DefiningResources/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Resources/DefiningResources/App.xaml -------------------------------------------------------------------------------- /Resources/DefiningResources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Resources/DefiningResources/README.md -------------------------------------------------------------------------------- /Resources/MergedResources/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Resources/MergedResources/App.config -------------------------------------------------------------------------------- /Resources/MergedResources/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Resources/MergedResources/App.cs -------------------------------------------------------------------------------- /Resources/MergedResources/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Resources/MergedResources/App.xaml -------------------------------------------------------------------------------- /Resources/MergedResources/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Resources/MergedResources/MainWindow.cs -------------------------------------------------------------------------------- /Resources/MergedResources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Resources/MergedResources/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Sample Applications/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Sample Applications/.DS_Store -------------------------------------------------------------------------------- /Sample Applications/DropShadow/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Sample Applications/DropShadow/App.cs -------------------------------------------------------------------------------- /Sample Applications/DropShadow/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Sample Applications/DropShadow/App.xaml -------------------------------------------------------------------------------- /Sample Applications/DropShadow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Sample Applications/DropShadow/README.md -------------------------------------------------------------------------------- /Sample Applications/ExpenseIt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Sample Applications/ExpenseIt/README.md -------------------------------------------------------------------------------- /Sample Applications/FontDialog/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Sample Applications/FontDialog/App.cs -------------------------------------------------------------------------------- /Sample Applications/FontDialog/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Sample Applications/FontDialog/App.xaml -------------------------------------------------------------------------------- /Sample Applications/FontDialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Sample Applications/FontDialog/README.md -------------------------------------------------------------------------------- /Sample Applications/HexSphereDemo/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Sample Applications/HexSphereDemo/App.cs -------------------------------------------------------------------------------- /Sample Applications/ParticlesDemo/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Sample Applications/ParticlesDemo/App.cs -------------------------------------------------------------------------------- /Sample Applications/WPFGallery/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Sample Applications/WPFGallery/App.xaml -------------------------------------------------------------------------------- /Sample Applications/WPFGallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Sample Applications/WPFGallery/README.md -------------------------------------------------------------------------------- /Sample Applications/WPFGallery/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Sample Applications/WPFGallery/Usings.cs -------------------------------------------------------------------------------- /Speech and Media/MediaGallery/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Speech and Media/MediaGallery/App.config -------------------------------------------------------------------------------- /Speech and Media/MediaGallery/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Speech and Media/MediaGallery/App.cs -------------------------------------------------------------------------------- /Speech and Media/MediaGallery/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Speech and Media/MediaGallery/App.xaml -------------------------------------------------------------------------------- /Speech and Media/MediaGallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Speech and Media/MediaGallery/README.md -------------------------------------------------------------------------------- /Speech and Media/UsingSpeech/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Speech and Media/UsingSpeech/App.config -------------------------------------------------------------------------------- /Speech and Media/UsingSpeech/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Speech and Media/UsingSpeech/App.cs -------------------------------------------------------------------------------- /Speech and Media/UsingSpeech/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Speech and Media/UsingSpeech/App.xaml -------------------------------------------------------------------------------- /Speech and Media/UsingSpeech/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Speech and Media/UsingSpeech/README.md -------------------------------------------------------------------------------- /Styles & Templates/EventTriggers/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Styles & Templates/EventTriggers/App.cs -------------------------------------------------------------------------------- /Threading/UsingDispatcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Threading/UsingDispatcher/App.config -------------------------------------------------------------------------------- /Threading/UsingDispatcher/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Threading/UsingDispatcher/App.cs -------------------------------------------------------------------------------- /Threading/UsingDispatcher/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Threading/UsingDispatcher/App.xaml -------------------------------------------------------------------------------- /Threading/UsingDispatcher/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Threading/UsingDispatcher/MainWindow.cs -------------------------------------------------------------------------------- /Threading/UsingDispatcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Threading/UsingDispatcher/README.md -------------------------------------------------------------------------------- /Tools/BamlReflector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Tools/BamlReflector/.gitignore -------------------------------------------------------------------------------- /Tools/BamlReflector/BamlReflector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Tools/BamlReflector/BamlReflector.sln -------------------------------------------------------------------------------- /Tools/BamlReflector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Tools/BamlReflector/README.md -------------------------------------------------------------------------------- /Tools/LocBaml/DefaultAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Tools/LocBaml/DefaultAttributes.cs -------------------------------------------------------------------------------- /Tools/LocBaml/InputBamlStreamList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Tools/LocBaml/InputBamlStreamList.cs -------------------------------------------------------------------------------- /Tools/LocBaml/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Tools/LocBaml/LICENSE.TXT -------------------------------------------------------------------------------- /Tools/LocBaml/LocBaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Tools/LocBaml/LocBaml.cs -------------------------------------------------------------------------------- /Tools/LocBaml/LocBaml.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Tools/LocBaml/LocBaml.csproj -------------------------------------------------------------------------------- /Tools/LocBaml/ResourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Tools/LocBaml/ResourceGenerator.cs -------------------------------------------------------------------------------- /Tools/LocBaml/ResourceTextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Tools/LocBaml/ResourceTextReader.cs -------------------------------------------------------------------------------- /Tools/LocBaml/ResourceTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Tools/LocBaml/ResourceTextWriter.cs -------------------------------------------------------------------------------- /Tools/LocBaml/StringLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Tools/LocBaml/StringLoader.cs -------------------------------------------------------------------------------- /Tools/LocBaml/TranslationDictionaries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Tools/LocBaml/TranslationDictionaries.cs -------------------------------------------------------------------------------- /Tools/LocBaml/commandline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Tools/LocBaml/commandline.cs -------------------------------------------------------------------------------- /Tools/LocBaml/const.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Tools/LocBaml/const.cs -------------------------------------------------------------------------------- /Visual Layer/CompositionTarget/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Visual Layer/CompositionTarget/App.cs -------------------------------------------------------------------------------- /Visual Layer/CompositionTarget/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Visual Layer/CompositionTarget/App.xaml -------------------------------------------------------------------------------- /Visual Layer/CompositionTarget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Visual Layer/CompositionTarget/README.md -------------------------------------------------------------------------------- /Visual Layer/DrawingVisual/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Visual Layer/DrawingVisual/App.config -------------------------------------------------------------------------------- /Visual Layer/DrawingVisual/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Visual Layer/DrawingVisual/App.cs -------------------------------------------------------------------------------- /Visual Layer/DrawingVisual/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Visual Layer/DrawingVisual/App.xaml -------------------------------------------------------------------------------- /Visual Layer/DrawingVisual/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Visual Layer/DrawingVisual/MainWindow.cs -------------------------------------------------------------------------------- /Visual Layer/DrawingVisual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Visual Layer/DrawingVisual/README.md -------------------------------------------------------------------------------- /Visual Layer/VisualsHitTesting/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Visual Layer/VisualsHitTesting/Form1.cs -------------------------------------------------------------------------------- /Visual Layer/VisualsHitTesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Visual Layer/VisualsHitTesting/README.md -------------------------------------------------------------------------------- /WPFSamples.msbuild.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/WPFSamples.msbuild.sln -------------------------------------------------------------------------------- /WPFSamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/WPFSamples.sln -------------------------------------------------------------------------------- /Windows/CommonDialog/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/CommonDialog/App.xaml -------------------------------------------------------------------------------- /Windows/CommonDialog/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/CommonDialog/App.xaml.cs -------------------------------------------------------------------------------- /Windows/CommonDialog/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/CommonDialog/AssemblyInfo.cs -------------------------------------------------------------------------------- /Windows/CommonDialog/DialogDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/CommonDialog/DialogDataModel.cs -------------------------------------------------------------------------------- /Windows/CommonDialog/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/CommonDialog/MainWindow.xaml -------------------------------------------------------------------------------- /Windows/CommonDialog/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/CommonDialog/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Windows/CommonDialog/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/CommonDialog/RelayCommand.cs -------------------------------------------------------------------------------- /Windows/CustomWindowUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/CustomWindowUI/App.config -------------------------------------------------------------------------------- /Windows/CustomWindowUI/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/CustomWindowUI/App.cs -------------------------------------------------------------------------------- /Windows/CustomWindowUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/CustomWindowUI/App.xaml -------------------------------------------------------------------------------- /Windows/CustomWindowUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/CustomWindowUI/README.md -------------------------------------------------------------------------------- /Windows/DialogBox/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/DialogBox/App.config -------------------------------------------------------------------------------- /Windows/DialogBox/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/DialogBox/App.cs -------------------------------------------------------------------------------- /Windows/DialogBox/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/DialogBox/App.xaml -------------------------------------------------------------------------------- /Windows/DialogBox/DialogBox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/DialogBox/DialogBox.csproj -------------------------------------------------------------------------------- /Windows/DialogBox/FindDialogBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/DialogBox/FindDialogBox.cs -------------------------------------------------------------------------------- /Windows/DialogBox/FindDialogBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/DialogBox/FindDialogBox.xaml -------------------------------------------------------------------------------- /Windows/DialogBox/FontDialogBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/DialogBox/FontDialogBox.cs -------------------------------------------------------------------------------- /Windows/DialogBox/FontDialogBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/DialogBox/FontDialogBox.xaml -------------------------------------------------------------------------------- /Windows/DialogBox/FontPropertyLists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/DialogBox/FontPropertyLists.cs -------------------------------------------------------------------------------- /Windows/DialogBox/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/DialogBox/MainWindow.cs -------------------------------------------------------------------------------- /Windows/DialogBox/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/DialogBox/MainWindow.xaml -------------------------------------------------------------------------------- /Windows/DialogBox/MarginsDialogBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/DialogBox/MarginsDialogBox.cs -------------------------------------------------------------------------------- /Windows/DialogBox/MarginsDialogBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/DialogBox/MarginsDialogBox.xaml -------------------------------------------------------------------------------- /Windows/DialogBox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/DialogBox/README.md -------------------------------------------------------------------------------- /Windows/MessageBox/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/MessageBox/App.config -------------------------------------------------------------------------------- /Windows/MessageBox/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/MessageBox/App.cs -------------------------------------------------------------------------------- /Windows/MessageBox/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/MessageBox/App.xaml -------------------------------------------------------------------------------- /Windows/MessageBox/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/MessageBox/MainWindow.cs -------------------------------------------------------------------------------- /Windows/MessageBox/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/MessageBox/MainWindow.xaml -------------------------------------------------------------------------------- /Windows/MessageBox/MessageBox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/MessageBox/MessageBox.csproj -------------------------------------------------------------------------------- /Windows/MessageBox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/MessageBox/README.md -------------------------------------------------------------------------------- /Windows/NonRectangularWindow/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/NonRectangularWindow/App.config -------------------------------------------------------------------------------- /Windows/NonRectangularWindow/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/NonRectangularWindow/App.cs -------------------------------------------------------------------------------- /Windows/NonRectangularWindow/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/NonRectangularWindow/App.xaml -------------------------------------------------------------------------------- /Windows/NonRectangularWindow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/NonRectangularWindow/README.md -------------------------------------------------------------------------------- /Windows/NotificationIcon/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/NotificationIcon/App.config -------------------------------------------------------------------------------- /Windows/NotificationIcon/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/NotificationIcon/App.cs -------------------------------------------------------------------------------- /Windows/NotificationIcon/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/NotificationIcon/App.xaml -------------------------------------------------------------------------------- /Windows/NotificationIcon/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/NotificationIcon/MainWindow.cs -------------------------------------------------------------------------------- /Windows/NotificationIcon/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/NotificationIcon/MainWindow.xaml -------------------------------------------------------------------------------- /Windows/NotificationIcon/NotifyIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/NotificationIcon/NotifyIcon.ico -------------------------------------------------------------------------------- /Windows/NotificationIcon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/NotificationIcon/README.md -------------------------------------------------------------------------------- /Windows/SaveWindowState/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/SaveWindowState/App.config -------------------------------------------------------------------------------- /Windows/SaveWindowState/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/SaveWindowState/App.cs -------------------------------------------------------------------------------- /Windows/SaveWindowState/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/SaveWindowState/App.xaml -------------------------------------------------------------------------------- /Windows/SaveWindowState/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/SaveWindowState/MainWindow.cs -------------------------------------------------------------------------------- /Windows/SaveWindowState/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/SaveWindowState/MainWindow.xaml -------------------------------------------------------------------------------- /Windows/SaveWindowState/POINT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/SaveWindowState/POINT.cs -------------------------------------------------------------------------------- /Windows/SaveWindowState/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/SaveWindowState/README.md -------------------------------------------------------------------------------- /Windows/SaveWindowState/RECT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/SaveWindowState/RECT.cs -------------------------------------------------------------------------------- /Windows/WindowHiding/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/WindowHiding/App.config -------------------------------------------------------------------------------- /Windows/WindowHiding/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/WindowHiding/App.cs -------------------------------------------------------------------------------- /Windows/WindowHiding/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/WindowHiding/App.xaml -------------------------------------------------------------------------------- /Windows/WindowHiding/ChildWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/WindowHiding/ChildWindow.cs -------------------------------------------------------------------------------- /Windows/WindowHiding/ChildWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/WindowHiding/ChildWindow.xaml -------------------------------------------------------------------------------- /Windows/WindowHiding/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/WindowHiding/MainWindow.cs -------------------------------------------------------------------------------- /Windows/WindowHiding/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/WindowHiding/MainWindow.xaml -------------------------------------------------------------------------------- /Windows/WindowHiding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/WindowHiding/README.md -------------------------------------------------------------------------------- /Windows/WindowHiding/WindowHiding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/WindowHiding/WindowHiding.csproj -------------------------------------------------------------------------------- /Windows/WindowSizingOrder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/WindowSizingOrder/App.config -------------------------------------------------------------------------------- /Windows/WindowSizingOrder/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/WindowSizingOrder/App.cs -------------------------------------------------------------------------------- /Windows/WindowSizingOrder/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/WindowSizingOrder/App.xaml -------------------------------------------------------------------------------- /Windows/WindowSizingOrder/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/WindowSizingOrder/MainWindow.cs -------------------------------------------------------------------------------- /Windows/WindowSizingOrder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/WindowSizingOrder/README.md -------------------------------------------------------------------------------- /Windows/Wizard/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/App.config -------------------------------------------------------------------------------- /Windows/Wizard/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/App.cs -------------------------------------------------------------------------------- /Windows/Wizard/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/App.xaml -------------------------------------------------------------------------------- /Windows/Wizard/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/MainWindow.cs -------------------------------------------------------------------------------- /Windows/Wizard/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/MainWindow.xaml -------------------------------------------------------------------------------- /Windows/Wizard/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/Properties/Resources.resx -------------------------------------------------------------------------------- /Windows/Wizard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/README.md -------------------------------------------------------------------------------- /Windows/Wizard/Wizard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/Wizard.csproj -------------------------------------------------------------------------------- /Windows/Wizard/WizardData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/WizardData.cs -------------------------------------------------------------------------------- /Windows/Wizard/WizardDialogBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/WizardDialogBox.cs -------------------------------------------------------------------------------- /Windows/Wizard/WizardDialogBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/WizardDialogBox.xaml -------------------------------------------------------------------------------- /Windows/Wizard/WizardLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/WizardLauncher.cs -------------------------------------------------------------------------------- /Windows/Wizard/WizardPage1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/WizardPage1.cs -------------------------------------------------------------------------------- /Windows/Wizard/WizardPage1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/WizardPage1.xaml -------------------------------------------------------------------------------- /Windows/Wizard/WizardPage2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/WizardPage2.cs -------------------------------------------------------------------------------- /Windows/Wizard/WizardPage2.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/WizardPage2.xaml -------------------------------------------------------------------------------- /Windows/Wizard/WizardPage3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/WizardPage3.cs -------------------------------------------------------------------------------- /Windows/Wizard/WizardPage3.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/WizardPage3.xaml -------------------------------------------------------------------------------- /Windows/Wizard/WizardResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/WizardResult.cs -------------------------------------------------------------------------------- /Windows/Wizard/WizardReturnEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/Windows/Wizard/WizardReturnEventArgs.cs -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /eng/AzurePipelinesMatrixGenerator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/eng/AzurePipelinesMatrixGenerator.ps1 -------------------------------------------------------------------------------- /eng/EnsureGlobalJsonSdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/eng/EnsureGlobalJsonSdk.ps1 -------------------------------------------------------------------------------- /eng/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/eng/README.md -------------------------------------------------------------------------------- /eng/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/eng/build.cmd -------------------------------------------------------------------------------- /eng/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/eng/build.ps1 -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WPF-Samples/HEAD/global.json --------------------------------------------------------------------------------