Hi
Where do you locate your convertors? do you put them in the Window.Resources section? or in the UserControl they are being used for? Neither of these options is good. You should put it in the App.Xaml file and here is why:
Lets look at the following example:
Here is our Window:
1: <Window x:Class="ConvertorLocation.Window1"
2: xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3: xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4: xmlns:my="clr-namespace:ConvertorLocation"
5: Title="Window1" Height="300" Width="300">
6: <Grid>
7: <ItemsControl ItemsSource="{Binding}">
8: <ItemsControl.ItemTemplate>
9: <DataTemplate>
10: <my:UserControl1></my:UserControl1>
11: </DataTemplate>
12: </ItemsControl.ItemTemplate>
13: </ItemsControl>
14: </Grid>
15: </Window>
Often we want to display a list of elements and allow the user to sort them in various ways. There are many ways to do it and I wanted to show you how to use a SortDescription Object. What is a SortDescription object you ask? It receives two parameters in its constructor: the first is [...]
We pay for user submitted tutorials and articles that we publish. Anyone can send in a contribution
Learn More