Top "Xaml" questions

Extensible Application Markup Language (XAML) is a declarative XML-based language used for initializing structured values and objects in various frameworks.

How can I get ScrollViewer to work inside a StackPanel?

In the following WPF XAML the ScrollViewer does not work (it displays a scroll bar but you cannot scroll and …

wpf xaml scrollviewer stackpanel
WPF Auto height in code

How could I set the value of the Height property of a WPF control in C# code to "Auto"? <…

c# wpf xaml
WPF ListView: Attaching a double-click (on an item) event

I have the following ListView: <ListView Name="TrackListView"> <ListView.View> <GridView> <GridViewColumn Header="…

c# wpf xaml
how to bind width of child element to width of parent element in silverlight

I have a grid whose width is "1*". So the actual width decided at runtime I think. Within that grid I …

wpf xaml binding silverlight-4.0 width
Where is the Application.DoEvents() in WPF?

I have the following sample code that zooms each time a button is pressed: XAML: <Window x:Class="WpfApplication12.…

c# .net wpf xaml
What does "{Binding Path=.}" mean in WPF binding?

What does {Binding Path=.} mean in a WPF binding? I see some people use it, but couldn't find any explanation. …

wpf data-binding xaml
What does the WPF star do (Width="100*")

What does exactly the star in size terms in WPF mean?

wpf xaml grid size
This type of CollectionView does not support changes to its SourceCollection from a thread different from the Dispatcher thread

I have a DataGrid which is populating data from ViewModel by asynchronous method.My DataGrid is : <DataGrid ItemsSource="{Binding …

c# wpf xaml silverlight mvvm
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. …

wpf xaml grid styles controltemplates
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; } …

.net wpf data-binding xaml