2,857 questions with Developer technologies | Windows Presentation Foundation tags
Screen.PrimaryScreen.WorkingArea is not giving full screen?
I am trying to make an Windows form app that will auto scale to full screen. The problem is that I do not want to make it full screen if it is less than 1680x1050. So I tried to use Screen.PrimaryScreen.WorkingArea.Width / Height to get the resolution. …
Developer technologies | Windows Presentation Foundation
wpf ,datagrid row has inner datagrid,select cell problem
One datagrid ,each row has one detail datagrid, i want to select cell outter datagrid and inner datagrid same time,but it's failed.when select cell in inner datagrid,the outer datagird cell selected will unselect,how to select cell outter datagrid and…
Developer technologies | Windows Presentation Foundation
wpf Viewport3d.GeometryModel3D.LinesCollec
hi. I want to add an ObservableCollection of Lines and ObservableCollection of arcsegment to Viewport3d. the goal is to draw arcs based on the Lines so whenever line.x/line.y updated it automatically updates the arcs, however my question is not…
Developer technologies | Windows Presentation Foundation

Flowlayoutpanel control in a child form can not be modified
when the father form has a flowlayoutpanel control, child form can not modify its any attribute though the modifiers of flowlayoutpanel is public. But other controls of father form like button can be modified in child form.
Developer technologies | Windows Presentation Foundation
How to create a grid-line document in a WPF Application
Does anybody have a link to a WPF example application that creates a document page with grid lines? Please see below:
Developer technologies | Windows Presentation Foundation
wpfCore3.1 binding mouse event to mvvm
is there a way to bind xaml control mouse event to mouse event handler in viewmodel? i'm using wpf core3.1 MS VS2019.
Developer technologies | Windows Presentation Foundation
What is the correct MSAL package for a WPF core 3.1 desktop app?
I have a WPF desktop app built on the .NET Core 3.1 framework. I would like to add the ability to acquire a token and call Microsoft Graph API from this desktop app. Microsoft.Identity.Client does not list .NET Core 3.1 as a dependency. Is this the…
Developer technologies | Windows Presentation Foundation
Microsoft Security | Microsoft Entra | Microsoft Entra ID

WPF samples - how to use the example projects included?
I downloaded the samples from GitHub but apart from getting a Form with some |Layout and Control details, I can notfind any way to try any of the examples. How to load/run any of the examples in the Solution? The only way I can figurte out is to…
Developer technologies | Windows Presentation Foundation
cannot set multiple base to custom control error
i'm trying to build a wpf custom control library, want to create some controls that inherited from wpf controls (textBox, label, ...) and i wanted them all to be inherted from a base class and wpf control, here is one of them: public class…
Developer technologies | Windows Presentation Foundation
drag the three endpoints of the two lines
I use the mouse to draw two lines, how to drag the three endpoints of the two lines,Similar to the effect below(it is a usercontrol,i want to line or path,not a usercontrol),I want to have two lines, and I can drag their common endpoint
Developer technologies | Windows Presentation Foundation
Add new Views and Viewmodels in Caliburn.Micro?
I would like to use Caliburn.Micro in my new MVVM projects. After reading the documentation, I understood that Caliburn.Micro takes care of the connection between views and view models on its own (if of course the naming convention is followed). For…
Developer technologies | Windows Presentation Foundation
BLE 4.2 connection dropping packets while using external dongles
Hi, Running into a packet drop issue when trying to stream data from a medical device to a hp desktop (WPF app) commonly used in hospitals and clinics. The application is using BluetoothLEDevice PairAsync to pair with the device and the device requires…
Developer technologies | Windows Presentation Foundation
WPF Treeview Binding
Hi Experts, I would like to populate WPF Treeview with Directory and subdirectories. For that I followed this https://social.msdn.microsoft.com/Forums/vstudio/en-US/bdc74177-0db3-4e9d-9a08-96406eb981a8/wpf-treeview-with-checkboxes?forum=wpf link. My…
Developer technologies | Windows Presentation Foundation
What is the correct package to create an HTTP client in a WPF Core3 desktop app?
I have a WPF desktop app using Microsoft.WnidowsDesktop.App.WPF and Microsoft.NETCore.App v3.1. I would like to add an HTTP client for simple GET/POST... What is the correct package to add an HTTP client so I can accomplish WPF-REST Web API…
Developer technologies | Windows Presentation Foundation

How to speed up a WPF DataGrid bound to an ObservableCollection?
The application is WPF/MVVM. A DataGrid's ItemSource is bound to an ObservableCollection<LogItem> where LogItem is a plain class of 5 strings and one enumerated value, none of which support the INotifyPropertyChanged interface. The problem is that…
Developer technologies | Windows Presentation Foundation

WPF: When is data binding applied?
Hallo, i stuck at a behaviour i can't explain nor find any help in the documentation or various forums. The following code is needed to explain my problem/ to ask my question. A simple WPF (VB.Net) app that has an combo box (BindingBox) that binds to…
Developer technologies | Windows Presentation Foundation
events in custom control in wpf
I've made this user control and it works well, I'm trying to covert it to a Custom Control, but I can't hook up my handler to those 3 events. any help will be appreciated. <Canvas x:Class="SMFU.UserControls.Public.MovableChildCanvas" …
Developer technologies | Windows Presentation Foundation

Clarify INotifyCollectionChanged
I have a TreeView bound to an ObservableCollection with a ViewModel. The TreeView includes folder-like elements that will have child items. Most times opening the app we won't need to view those child items so I'm not filling them in when the app opens,…
Developer technologies | Windows Presentation Foundation

Memory leak. Class with finalizer
Created a minimal reproducing application. Reproducing conditions: Visual Studio 2017 WPF application Launch the application under the debugger WPF window code (class with finalizer, very busy WPF main thread): code: using…
Developer technologies | Windows Presentation Foundation


WPF custom data grid with button
In WPF xaml, I would like to make a custom data grid with button in cell. I want to create button(Say "Add" button) in the last cell of each row as shown in below pic. While pressing "add" button some operation will happen…