vote up 0 vote down star

Hi,

I am big into code generation for the service/data layer of my apps. What I would really love to do is generate some basic WPF Controls, Data Templates, or some other XAML code based on the metadata I use to generate my service/data layer. EDIT: This generation is done before compile time.

What I envision is being able to generate a control which has basic controls in it TextBlocks, Labels, Date Pickers, Textboxes, Checkboxes, etc based on types of my data.

The big thing I am missing is to somehow never touch that generated XAML code and control the layout completely outside of it. In the web world I could technically do this by generating "semantic" html and then using CSS selectors to select nodes and position them. With CSS/HTML I could completely change the layout and never touch the generated html.

Is there someway in WPF to control layout of a Control or Data Template from outside of that code? (Selectors, Visual Inheritance, etc?)

Thanks! Jon

flag

67% accept rate

2 Answers

vote up 0 vote down

Hi,

Use Grid.SetColumn( UIElement, value ) & Grid.SetRow( UIElement, value )

link|flag
vote up 0 vote down

If I understand correctly, you want to generate XAML dynamically, then parse it and use it?

If so, you can parse/load it into memory using System.Windows.Application.LoadComponent(Uri uri). OR you can use XamlReader.Load(...).

Edit (read the question again, so adding some things): You can use WPF Styles to position and control layout of those elements.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.