Search Results

3
votes

Do you know any WPF based text editor control?

I don't know of any WPF-based text editor, and I've looked around for one. Products like Kaxaml use the non-WPF …
0
votes

WPF Validation for the whole form

The description of your problem is a little vague to me. I mean, I'm not exactly sure what your difficulty is. Assuming that the DataContext is some sort of presenter or controller that has a prope …
1
vote

How to Set Grid Column MaxWidth depending on Window or Screen Size in XAML

I think the XAML-only approach is somewhat circuitous, but here is a way to do it. <Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:sys="clr-n …
7
votes

What WPF books would you recommend?

Sams Teach Yourself WPF in 24 Hours. I'm one of the authors, so my opinion is biased. Our book is structur …
7
votes

What is the best practice for compiling Silverlight and WPF in one project?

Update: goes to show that there is almost always an easier way. :-) The first step is to use conditional compilation to segregate the Silverlight specific code. (I'm assuming that …
4
votes

Convert WPF Application to SilverLight

Will and Bogdan's answers are correct. The keyword here is "minimal". Rob Eisenberg has a list of differences …
0
votes

Using WPF in IIS7 or a windows service?

I've worked with a company that is using WPF in an IIS hosted renderer, though you have to have a hotfix from Microsoft installed. My understanding is that this hotfix is not publicly available, bu …
2
votes

Ambient Occlusion Shader Effect in WPF?

If you have an understanding of terms like "ambient occlusion" then you should probably be working with XNA. XNA as …
5
votes

How do I trigger a style change if DataContext is null or not using WPF

Given the scenario you describe, I would set the properties with a style and a data trigger. The data trigger would use the default binding which is the data context. An example might look …
0
votes

How can I raise an event from anywhere in my WPF application?

One solution to problem is to use an Event Aggregator. The pattern itself is platform independent. Jeremy Mi …
1
vote

why not partial class to build the ViewModel in MVVM pattern?

In some cases this may be useful, but generally the ViewModel (or PresentationModel) has a different set of concerns that would muddle the rest of the model. For example, imagine that you h …