0
votes
-1
votes
INotifyPropertyChanged problem
Are you sure the binding works? Have you checked the output window for errors? Have you set the DataContext property of the Window or something to make it work? Are you sure the setter is called? I …
0
votes
Is there a way to detect Layout or Display changes in WPF?
You could try one of the WPF Profling Tools for WPF mentioned here.
…
6
votes
2
votes
0
votes
WPF Databinding Magic
It uses reflection to set the value of that property. INotifyPropertyChanged is only needed if the TextBox needs to be informed of a change in the Name property of the Foo class.
…
1
vote
How do I implement WPF layout if sizes of peer elements are not independent?
Sounds to me you need to implement the layout in the container. See http://www.wpftutorial.net/CustomLayoutPanel.html …
0
votes
Using XAML vector graphics in WPF application
http://learnwpf.com/Posts/Post.aspx?postId=d849072b-4e45-4ad4-b28c-71341ea30d46 explains …
3
votes
Using Image control in WPF to display System.Drawing.Bitmap
According to http://khason.net/blog/how-to-use-systemdrawingbitmap-hbitmap-in-wpf/
…
1
vote
How to use a different coordinate system in WPF? (scaling only)
You can also set sizes in points (FontSize="10pt"), in inches (FontSize="10in") or in centimeters (FontSize="10cm"). Of course the real size depends on the DPI setting of Windows and the DPI of you …
3
votes
How Do I Create a System.Windows.Media.ImageSource From a Byte Array?
BitmapImage bi = new BitmapImage();
bi.BeginInit();
bi.StreamSource = new MemoryStream(ByteArray);
bi.EndInit();
Also see …
1
vote
Create WPF TextBox that accepts only numbers
Most implementations I have seen so far are using the PreviewTextInput event to i …
1
vote
Setting the background of my image in WPF
The first argument of Color.FromArgb represents the Alpha blending value. 0 meaning fully tra …
1
vote
Is it possible to create your own widgets in XAML?
Yes, they are usually called custom controls. Controls can be used as a base class for your new control. Do mind that WPF favors composition over inheritance. You don't need to use inheritance (cus …
1
vote
Show items in an itemscontrol in two columns (WPF)
Use a ListBox and specify a DataTemplate in which you put both the TextBlock and TextBox. Use bindings to populate them both. See …
