John Schroedl
John Schroedl
I'm with @sonnemaf on this one. I use Blend for adding Behaviors, cloning and customizing themes and templates for controls. I would also want to manage visual states if WinUI...
Re: handling NaNs. This change has broken code which does pass NAN in the data. Applications can use this to indicate "missing" data. In the past, they were skipped. Now,...
> > As a workaroung you can define `_USE_STD_VECTOR_ALGORITHMS` to `0` in compiler options or before including any STL headers. > > Or you can define `_USE_STD_VECTOR_FLOATING_ALGORITHMS` to `0` to...
It looks like you're on Windows 11. You can use DWM calls to turn off the rounded corners if needed. Something like this: ``` namespace { . . . auto...
The WebView/WebBrowser z-order issue is such a long-standing problem in our WPF application. We have to explain to users of our s/w why controls and other things do not show...
WebView2 was created as a replacement for WPF WebBrowser and UWP WebView, so it is no surprise that it uses COM. IMO, making this cross-plat is a pipe dream which...
I am seeing this same problem in our application and am hoping someone has a workaround or fix to offer. Sadly, I was unsuccessful when trying the workaround offered by...
Through a lot of trial and error, I've discovered that the `MinSize` binding on the `Popup` element in the `ComboBox` template is preventing the `Popup` from growing along with the...
The difference between your test and mine is that my window derives from WPF `Window` ```using System.Windows; namespace WpfUiTest { /// /// Interaction logic for MainWindow.xaml /// public partial class...
Note that it is **critical** that you first dropdown the combo to see the popup once and then press the Add button.