Extensible Application Markup Language (XAML) is an XML language used for defining user interfaces in WPF and Silverlight
159
votes
8answers
22k 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 ...
36
votes
5answers
75k 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}" />
...
163
votes
5answers
50k 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
...
46
votes
9answers
60k 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 ...
38
votes
5answers
33k views
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;
...
28
votes
6answers
11k views
How to add a Blend Behavior in a Style Setter
I have crated a Blend behavior for Button. How can I set that to all of my Buttons in the app.
<Button ...>
<i:Interaction.Behaviors>
<local:MyBehavior />
...
46
votes
6answers
28k 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() {...}
}
...
54
votes
13answers
53k views
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 ...
39
votes
6answers
49k 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 ...
40
votes
7answers
15k 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 ...
15
votes
1answer
6k views
How do you bind a CollectionContainer to a collection in a view model?
I have a view model with a property that exposes a collection of things.
I have a ComboBox whose ItemsSource property is bound to this collection.
Now the user can select from the list.
I want to ...
90
votes
3answers
23k views
How to get a ListBox ItemTemplate to stretch horizontally the full width of the ListBox?
I want to have the ListItems to extend with their orange background the full width of the Listbox.
Currently they are only as wide as the FirstName + LastName.
I've set every element I can to: ...
81
votes
4answers
45k views
ResourceDictionary 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 ...
68
votes
2answers
17k 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 ...
17
votes
2answers
22k views
Convert WPF (XAML) Control to XPS Document
Can I take an Existing WPF (XAML) Control, databind it and turn it into an XPS document that can be displayed and printed using the WPF XPS Document Viewer?
If so, how?
If not, how should I be doing ...
3
votes
1answer
668 views
How can I reduce RadioButton binding code?
I'm following this answer on how to databind enums (ints in my case) to RadioButtons, but if I've got several TabItems each with 10x10 grids of RadioButtons, is there any way to get rid of some of ...
37
votes
4answers
18k 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:
...
49
votes
3answers
20k views
Difference between SelectedItem, SelectedValue and SelectedValuePath
What is the difference betweeen the following:
SelectedItem
SelectedValue
SelectedValuePath
All these dependency properties are defined in Selector class. I often confuse SelectedItem with ...
17
votes
4answers
18k views
WPF TreeView HierarchicalDataTemplate - binding to object with multiple child collections
I am trying to get a TreeView to bind my collection so that all groups show nested groups and each group will show entry.
How can I use the HierarchicalDataTemplate so that the TreeView will process ...
19
votes
2answers
39k views
The calling thread must be STA, because many UI components require this
I am using: http://www.codeproject.com/KB/IP/Facebook_API.aspx
I am trying to call the xaml which is created using WPF.
But it gives me an error:
The calling thread must be STA, because many UI ...
9
votes
6answers
13k views
How to programatically set selected Panorama item in WP7
I'm using a panorama control in a WP7 app. One of the PanoramaItems takes you to another page, which then allows you send an email through the EmailComposeTask. If you don't select to send the email ...
64
votes
8answers
7k 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?
...
82
votes
10answers
16k 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"
...
74
votes
9answers
30k 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 ...
49
votes
3answers
22k 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 ...
55
votes
8answers
49k views
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>
...
24
votes
1answer
7k 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 ...
30
votes
6answers
53k 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 ...
27
votes
3answers
14k 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 ...
30
votes
10answers
20k views
Apply stroke to a textblock in WPF
How do you apply stroke (outline around text) to a textblock in xaml in WPF?
15
votes
2answers
4k views
Is there a way to use data-template inheritance in WPF?
Is it possible to have DataTemplate composition or inheritance (similar to "BasedOn" in Styles)? There are 2 instances where I need that.
1) For inherited classes: I have a base class with several ...
34
votes
5answers
14k 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,
...
10
votes
2answers
5k views
Bind datagrid column visibility MVVM
.Net 3.5
I know that the columns doesn't inherit the datacontext and by reading other posts i thought this would work:
Visibility="{Binding RelativeSource={x:Static RelativeSource.Self},
...
17
votes
6answers
4k 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/>
...
14
votes
2answers
896 views
Difference between TargetType=“controlType” and TargetType=“{x:Type controlType}”
In WPF you can set the TargetType to either the name of the type or you can set it to {x:Type nameOfType}.
Does anyone know what the difference is?
16
votes
4answers
3k views
{x:Null} vs. Transparent?
What's the difference between the following two?
Background="{x:Null}"
and
Background="Transparent"
58
votes
6answers
31k 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 ...
31
votes
2answers
18k 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 ...
10
votes
4answers
10k views
How exactly do Attached Properties work in WPF?
I'm a bit mystified as to how Attached Properties actually convey their values to either parent or child elements. TextElement.FontFamily causes child elements to inherit the value assigned to that ...
37
votes
2answers
21k 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 ...
34
votes
7answers
21k views
Bind TextBox on Enter-key press
The default data-binding 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 data-binding happens when I press ...
26
votes
1answer
9k 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?
16
votes
6answers
14k views
Loading XAML at runtime?
First some background: I'm working on an application and I'm trying to follow MVVM conventions writing it. One thing I'd like to do is to be able to give the application different "skins" to my ...
21
votes
2answers
5k views
XAML Conditional Compilation
Is there an easy way to use the same conditional compilation symbol that I'm using for my c# code, in my xaml files?
20
votes
1answer
28k views
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 ...
6
votes
4answers
7k views
How to access a specific item in a Listbox with DataTemplate?
Hi :)
I have a ListBox including an ItemTemplate with 2 StackPanels.
There is a TextBox in the second StackPanel i want to access.
(Change it's visibility to true and accept user input)
The trigger ...
14
votes
3answers
993 views
Why does the binding update without implementing INotifyPropertyChanged?
I created a ViewModel and bound its property to two textboxes on UI. The value of the other textbox changes when I change the value of first and focus out of the textbox but I'm not implementing ...
9
votes
2answers
11k views
Why are ActualWidth and ActualHeight 0.0 in this case?
I have a Grid inside a Canvas defined like this:
<Canvas x:Name="outerCanvas">
<Grid Grid.Row="1" Name="cGrid" ShowGridLines="True" Width="{Binding Path=ActualWidth, ...
5
votes
2answers
5k views
Loading XAML XML through runtime?
We are migrating to Winforms to WPF based solution. We have custom XML definition which are used to build the windows form at runtime.
Since XAML is XML based, can we define a HelloWorldWindow.xml ...
5
votes
2answers
7k views
WPF MenuItem.Command binding to ElementName results to System.Windows.Data Error: 4 : Cannot find source for binding with reference
I have the following XAML:
<UserControl x:Class="EMS.Controls.Dictionary.TOCControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...