Hannsen
Custom Controls won't show in XAML Designer when referenced via .dll
Did you try, close VS, delete obj and bin directories in both projects. - Open CustomControl project, rebuild in Debug and Release, open WPF project, rebuild. - After rebuild, does the designer show something?
3 replies
SerialPort ParityReplace on Linux
The issue of ParityReplace being ignored on serial ports in linux often stems from the way linux handles serial port configurations. Unlike windows, linux might not support certain parity setttings or might interpret them differently. Thic can lead to unexpected behavior when trying to use parity settings like ParityReplace.
21 replies
SerialPort ParityReplace on Linux
This is the implementaiton on UNIX bases OS:
https://github.com/dotnet/runtime/blob/9d5a6a9aa463d6d10b0b0ba6d5982cc82f363dc3/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialStream.Unix.cs
21 replies
SerialPort ParityReplace on Linux
Ok, you wont be happy with the answer.
https://github.com/dotnet/runtime/blob/9d5a6a9aa463d6d10b0b0ba6d5982cc82f363dc3/src/libraries/System.IO.Ports/src/System/IO/Ports/SerialStream.Windows.cs
This is the implementation on WindowsOS, line 288
21 replies
Changing the visibility/animations of UI elements
I recommend reading: https://learn.microsoft.com/en-us/dotnet/desktop/wpf/data/?view=netdesktop-8.0
9 replies