Tagged Questions
4
votes
2answers
3k views
WPF Instantiate User control programmatically to render it as PNG
I want to instantiate a user control programmatically in a DLL to save it afterwards as PNG file. This is generally no problem with PngBitmapEncoder and RenderTargetBitmap.
This are my questions:
...
2
votes
1answer
89 views
Add a control using XAML but instantiated using code-behind
I'm trying to understand how XAML and code-behind talk to each other. I know that code-behind can access an element instantiated in XAML using the Name attribute eg:
Instantiate the button in XAML:
...
1
vote
3answers
40 views
Why can't I place an array of objects in of in the resources of my root control?
Suppose I have a normal Xaml file with two extra xmlns, one to a "Person" Class with two CLR properties "Name" and "Age", and one to a String object:
<Window x:Class="WpfPractice.ListBinding"
...
1
vote
1answer
494 views
How can I instantiate WPF elements via their type when they have StaticResources?
I need to instantiate WPF types (say, a UserControl or a Page) via reflection for a designer. The problem I'm having is that when I attempt to instantiate these using Activator.CreateInstance I get a ...
0
votes
3answers
32 views
Instantiating a class that inherits INotifyPropertyChanged
I have a very simple class that has a single property and which inherits INotifyPropertyChanged:
class SimpleClass:INotifyPropertyChanged
{
public event PropertyChangedEventHandler ...