35
votes
20answers
2k views
Hidden features of WPF and XAML?
Here is a large number of hidden features discussed for variety of languages. Now I am curious about some hidden features of XAML and WPF?
One I have found is the header click event of a ListView
…
18
votes
11answers
697 views
What .Net/WPF features do you miss when working in Silverlight?
I recently started working with Silverlight and immediately noticed the difference between the Silverlight BCL and the full .Net and WPF. For some of them I've found great solutions posted online by …
14
votes
5answers
3k views
How to create trapezoid tabs in WPF tab control
How to create trapezoid tabs in WPF tab control? I'd like to create non rectangular tabs that look like tabs in Google Chrome or like tabs in code editor of VS 2008.
Can it be done with WPF styles or …
14
votes
4answers
2k views
Is there a WPF Cheat Sheet outhere?
I'm looking for a WPF cheat sheet that has the WPF markup extensions for binding, resources, and other common things in WPF.But so far I've had trouble finding it.
Anyone know where I could find one?
…
14
votes
1answer
4k views
How to put WPF Tab Control tabs on the side
I am trying to create a Tab Control in WPF that has the tabs arranged down the right side of the control, with the text rotated 90 degrees The look is similar to those plastic tabs you can buy and use …
12
votes
10answers
2k views
Where can I find some sample WPF animations?
As I am a programmer,and not an artist or animator and I am failing at showing off the best features of WPF in my application. Although I have samples for simple animations for buttons like growing, …
11
votes
6answers
1k views
In WPF, what are the differences between the x:Name and Name attributes?
The title says it all. Sometimes it seems that the Name and x:Name attributes are interchangeable.
So, what are the definitive differences between them, and when is it preferable to use one over the …
9
votes
7answers
2k views
Bind to a method in WPF?
How do you bind to an objects method in this scenario in WPF?
public class RootObject
{
public string Name { get; }
public ObservableCollection<ChildObject> GetChildren() {...}
}
…
9
votes
3answers
2k views
Can I specify a generic type in XAML?
In XAML I can declare a DataTemplate so that the template is used whenever a specific type is displayed. For example, this DataTemplate will use a TextBlock to display the name of a customer:
…
9
votes
3answers
2k views
XAML: Newline in string attribute
How can I add a line break to text when it is being set as an attribute i.e.:
<TextBlock Text="Stuff on line1 \n Stuff on line2" />
Breaking it out into the exploded format isn't an option …
8
votes
13answers
631 views
WPF simple tips-and-tricks?
I was fooling around with margins and padding and found that a negative value was acceptable and gives a nice effect in appropriate circumstances. For instance, if you have a border with a filled …
8
votes
1answer
4k views
What’s the difference between StaticResource and DynamicResource in WPF?
When using resources such as brushes, templates and styles in WPF, they can be specified either as StaticResources
<Rectangle Fill="{StaticResource MyBrush}" />
or as a DynamicResource
…
7
votes
15answers
1k views
XAML or C# code-behind
I don't like to use XAML. I prefer to code everything in C#, but I think that I am doing things wrong.
In which cases it is better to use XAML and when do you use C#? What is your experience?
7
votes
1answer
236 views
What is the best way to organize WPF styles and ResourceDictionaries in a large project?
I have a large WPF application that uses a large number of styles, brushes, and theming. Managing the large number of styles with multiple developers is becoming difficult. Right now, most of our …
7
votes
1answer
714 views
Animate WPF Datatemplate when item added to Listbox?
Hello,
In my project I have a WPF Listbox bound to an ObservableCollection. Every time I add a new item to the Collection the same item is added to the Listbox automaticly.
To display the items in …
