119
votes
25answers
12k 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
...
83
votes
3answers
27k 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
...
78
votes
7answers
11k 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 ...
56
votes
3answers
47k views
WPF XAML: how to get StackPanel's children to fill maximum space downward?
I simply want flowing text on the left, and a help box on the right.
The help box should extend all the way to the bottom.
If you take out the outer StackPanel below it works great.
But for reasons ...
48
votes
2answers
999 views
How to make Resharper resolve path for CustomBinding MarkupExtension
I want to create some extended Binding-Markup-Extension, which behaves just like a normal WPF-Binding but does some things more (use different defaults, maybe add some behavior, etc.).
Code looks like ...
47
votes
7answers
5k views
Is there a WPF Cheat Sheet available?
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?
...
44
votes
5answers
21k 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 ...
43
votes
10answers
9k views
My images are blurry! Why isn't WPF's SnapsToDevicePixels working?
I'm using some Images in my WPF applcation.
XAML:
<Image Name="ImageOrderedList"
Source="images/OrderedList.png"
ToolTip="Ordered List"
Margin="0,0,5,5"
Width="20"
...
40
votes
12answers
35k views
WPF - Pan & Zoom Image
I want to create a simple image viewer in WPF that will enable the user to:
Pan (by mouse dragging the image).
Zoom (with a slider).
Show overlays (rectangle selection for example).
Show original ...
40
votes
2answers
27k views
WPF Resource Dictionary in a separate assembly
I have resource dictionary files (MenuTemplate.xaml, ButtonTemplate.xaml, etc) that I want to use in multiple separate applications. I could add them to the applications' assemblies, but it's better ...
36
votes
2answers
9k views
What is so special about Generic.xaml?
I've been trying to figure out how to organize my ResourceDictionary files for reuse and sharing with other members of my team.
I keep coming across "Generic.xaml", but if I look on MSDN for ...
32
votes
4answers
29k views
WPF DataTrigger where value is NOT null?
I know that I can make a setter that checks to see if a value is NULL and do something. Example:
<TextBlock>
<TextBlock.Style>
<Style>
<Style.Triggers>
...
31
votes
6answers
16k 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() {...}
}
...
27
votes
11answers
1k 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 ...
26
votes
11answers
15k 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, ...
26
votes
3answers
11k views
Passing an enum value as command parameter from xaml
I want to pass an enum value as command parameter in WPF, something like this -
<Button x:Name="uxSearchButton" Command="{Binding Path=SearchMembersCommand}"
...
26
votes
4answers
11k 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:
...
26
votes
4answers
55k views
Image UriSource and Data Binding
I'm trying to bind a list of custom objects to a WPF Image like this:
<Image>
<Image.Source>
<BitmapImage UriSource="{Binding Path=ImagePath}" />
...
25
votes
18answers
6k 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?
23
votes
3answers
8k views
WPF Application that only has a tray icon
I am a total WPF newbie and wonder if anyone could give me some pointers how to write an application that starts minimized to tray. The idea is that it periodically fetches an RSS Feed and creates a ...
23
votes
3answers
19k views
WPF ListView: Attaching a double-click (on an item) event
I have the following ListView:
<ListView Name="TrackListView">
<ListView.View>
<GridView>
<GridViewColumn Header="Title" Width="100" ...
23
votes
9answers
11k views
WPF CommandParameter is NULL first time CanExecute is called
I have run into an issue with WPF and Commands that are bound to a Button inside the DataTemplate of an ItemsControl. The scenario is quite straight forward. The ItemsControl is bound to a list of ...
23
votes
6answers
33k views
How do I bind a WPF DataGrid to a variable number of columns?
My WPF application generates sets of data which may have a different number of columns each time. Included in the output is a description of each column that will be used to apply formatting. A ...
22
votes
5answers
35k views
How to autosize and right-align GridViewColumn data in WPF?
How can I:
right-align the text in the ID column
make each of the columns auto size according to the text length of the cell with the longest visible data?
Here is the code:
<ListView ...
21
votes
5answers
7k views
OneWayToSource binding from readonly property in Xaml
I'm trying to bind to a Readonly property with OneWayToSource as mode, but it seems this cannot be done in XAML:
<controls:FlagThingy IsModified="{Binding FlagIsModified,
...
21
votes
6answers
32k views
Bring element forward (Z Index) in Silverlight/WPF
All the documentation and examples I'm finding online for setting Z-Index to bring an element forward in Silverlight are using a Canvas element as a container.
My items are Border elements inside of ...
20
votes
10answers
2k views
Setting a custom property within a WPF/Silverlight page
This sounds like it should be simple. I have a Page declared in XAML in the normal way (i.e. with "Add new item...") and it has a custom property. I'd like to set that property in the XAML associated ...
20
votes
3answers
13k views
Problem binding to static property
I'm having a hard time binding a simple static string property to a text box.
Here's the class with the static property:
public class VersionManager
{
private static string filterString;
...
20
votes
6answers
7k views
How do I space out the child elements of a StackPanel?
Given a StackPanel:
<StackPanel>
<TextBox Height="30">Apple</TextBox>
<TextBox Height="80">Banana</TextBox>
<TextBox Height="120">Cherry</TextBox>
...
20
votes
6answers
8k views
databind the Source property of the WebBrowser in WPF
Does anyone know how to databind the .Source property of the WebBrowser in WPF ( 3.5SP1 )?
I have a listview that I want to have a small WebBrowser on the left, and content on the right, and to ...
19
votes
1answer
18k views
WPF: Having HierarchicalDataTemplates in a TreeView
With regards to a question I posted earlier on (WPF: Correctly storing an object in a TreeViewItem)
Is it possible to have nested HierarchicalDataTemplates in a TreeView?
Take the following ...
19
votes
1answer
12k views
Load WPF styles or other Static Resources from an external file or assembly
I have a few WPF applications and I want all my styles to be in a shared assembly instead of declaring them in each application separately.
I am looking for a way so I don't have to change all my ...
19
votes
1answer
11k 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 ...
19
votes
8answers
2k views
WPF — Where do you draw the line between code and XAML?
I'm a long-time C#/.NET programmer but totally new to WPF and the System.Windows.Controls namespace and XAML. The more I learn about it the more I realize that you can do pretty much all of your GUI ...
18
votes
2answers
6k views
WPF TreeView: How to style selected items with rounded corners like in Explorer
The selected item in a WPF TreeView has a dark blue background with "sharp" corners. That looks a bit dated today:
I would like to change the background to look like in Explorer of Windows 7 ...
18
votes
5answers
8k views
How to create a WPF UserControl with NAMED content
I have a set of controls with attached commands and logic that are constantly reused in the same way. I decided to create a user control that holds all the common controls and logic.
However I also ...
18
votes
1answer
4k views
Animate WPF Datatemplate when item added to Listbox?
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 the ...
16
votes
4answers
516 views
WPF without XAML
Architecturally, I think WPF is pretty amazing. In general, I'm a big fan of the underlying rendering/animation inner workings. The flexibility of the templating and styling set up is pretty ...
16
votes
11answers
2k views
Strongly typed databinding in WPF/Silverlight/XAML?
One of my biggest pet peeves with how databinding works with XAML is that there's no option to strongly type your databindings. In other words, in C#, if you want to access a property on an object ...
16
votes
2answers
11k views
How can a WPF UserControl inherit a WPF UserControl?
The following WPF UserControl called DataTypeWholeNumber which works.
Now I want to make a UserControl called DataTypeDateTime and DataTypeEmail, etc.
Many of the Dependency Properties will be ...
16
votes
5answers
49k views
Styling a WPF layout grid background (of each cell, row, column)
I would like to know if there is any way to style a WPF layout grid's cells, rows and columns. I've been trying to find any information and the few mentions I've found have not been that informative.
...
16
votes
5answers
11k views
WPF TextBox DataBind on EnterKey press
The default DataBinding on TextBox is TwoWay and it commits the text to the Property only when TextBox lost its focus.
Is there any easy XAML way exists to make the DataBinding Happens when I press ...
15
votes
2answers
391 views
Weird XAML parsing error when trying to set TextBox.IsReadOnly
I've managed to reduce this to a simple test case. An exception is thrown during the parsing of this XAML using XamlReader.Parse():
<DockPanel ...
15
votes
7answers
23k views
How do I get a TextBox to only accept numeric input in WPF?
I'm looking to accept digits and the decimal point, but no sign.
I've looked at samples using the NumericUpDown control for WinForms, and this sample of a NumericUpDown custom control from ...
15
votes
5answers
11k views
Trouble referencing a Resource Dictionary that contains a Merged Dictionary
I have a library, CommonLibraryWpfThemes, with several Resource Dictionary XAML files in it. My Themes/Generic.xml file contains a ResourceDictionary.MergedDictionaries declaration that merges all the ...
15
votes
9answers
15k views
Apply stroke to a textblock in WPF
How do you apply stroke (outline around text) to a textblock in xaml in WPF?
14
votes
1answer
5k views
WPF: Remove dotted border around focused item in styled listbox
I have a horizontal listbox with a custom controlIemplate. The selected item gets a dotted frame when focused. Anyone know how to get rid of it?
14
votes
3answers
4k views
What does “{x:Static}” mean in XAML?
What does "{x:Static}" mean in XAML?
Code sample:
<SolidColorBrush Color="{x:Static SystemColors.ControlColor}" />
14
votes
7answers
8k views
Source for xaml toolbar icons?
Could you suggest a source for xaml toolbar icons (new, open, save, print)?
13
votes
5answers
1k views
OneWayToSource Binding seems broken in .NET 4.0
OneWayToSource Binding seems broken in .NET 4.0
I have this simple piece of Xaml
<StackPanel>
<TextBox Text="{Binding TextProperty, Mode=OneWayToSource}"/>
<Button/>
...