11 lines
508 B
XML
11 lines
508 B
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="clr-namespace:XLIMS.TPRZ.ViewModels"
|
|
xmlns:v="clr-namespace:XLIMS.TPRZ.Views">
|
|
<DataTemplate DataType="{x:Type vm:TipViewModel}">
|
|
<v:TipView/>
|
|
</DataTemplate>
|
|
<DataTemplate DataType="{x:Type vm:TprzViewModel}">
|
|
<v:TprzView/>
|
|
</DataTemplate>
|
|
</ResourceDictionary> |