Logical resources allow you to define objects in XAML, which are not part of visual tree but can be used in your user interface. One of the examples of logical resource is Brush, which is used to provide a color scheme. Generally those objects are defined as resource, which are used by multiple elements of the applications. < Window.Resources > < RadialGradientBrush x : Key ="myGradientBrush"> < GradientStop Color ="Green" Offset ="0"/> < GradientStop Color ="Blue" Offset ="2"/> </ RadialGradientBrush > </ Window.Resources > Now, above declared resource could be used as either static or dynamic resource. One point to remember is that, when using static resour...
This blog is all about my technical learnings pertaining to LLM, OpenAI, Azure OpenAI, C#, Azure, Python, AI, ML, Visual Studio Code and many more.