I keep getting this error on my WPF application. I installed OxyPLot.WPF version 2.1.0. Build started at 10:44 AM.1>------ Build started: Project: PAHAgri.Desktop, Configuration: Debug Any CPU ----...
Using WPF, I display golf results in a DataGrid. There are two rows per player in each DataGrid row, with 19 columns. The first row showing gross scores and the second row showing net scores.<?...
I made a WPF desktop application for Windows with C#, and when I basically finished it programming with a 1920x1200 pixel screen, I found out that the graphics rendering performance is way too slow on ...
In a forms application, I did this. if (scanOnly) { if (int.TryParse(slowScanTimeS, out stdScanTime)) scanTime = Convert.ToInt32(slowScanTimeS); else scanTime = ...
I have a user control that I did not write. The control's XAML has an object that has unmanaged resources. It creates Direct3D render targets and depth stencil surfaces and the like, and holds ...
In a VB.Net WPF XAML project, I want to add a Property to a UserControl class and inherit from that Class.I have tried the following:Public Class clsUcBase Inherits UserControl Private ...
Let's take an example from here "BindingGroup.Items Property"If you replace Name="bindingGroup" with x:Name=bindingGroup" in the example, then only one object will be ...
I have a WPF C# project in Visual Studio 2026 and I'm trying to get my menu bar's content to properly align. Currently, it's aligning like this:and I'd like it to align like this:.I've tried many ...
I'm trying to develop an equivalent of a webview2 using CefSharp because I need backward compatibility for systems that do not support .NET 8/10. These are the steps I performed after creating a WPF ...
bonjour.I'm having trouble finding a solution to update the default backgroudn color (in gray) to another color. As for now I got so far (see linked screen capture) with the folowing code:<Style ...
In my WPF app I navigate from one sub view to another and then back. I've done this and so have other users in the past but today I got the strangest unhandled exception appear while I was navigating ...
WPF app using MVVM - this is my first time trying to use CanExecute of an ICommand, so please bear with me.A button is bound to a Command in the view model. When the button is clicked, it runs a long ...
I am creating a copilot like VSIX extension on VS2026 to use with my offline LLM server.I have created the dropdown menu button and submenu buttons (which seems to be always greyed out/disabled).I ...