Search Results

2
votes

Where to find the status of the WPF Image Control?

As long as your ImageSource is a BitmapImage you could use the BitmapImage.DownloadCompleted event. The only problem I have found so far is that it only works from C#, so you would lose some flexib …
0
votes

Add WPF control at runtime

In case you want to add the control to a Grid instead of a Canvas you can specify all the Grid properties through the Grid static class as follows: Label newLabel = new Label(); la …