mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
13 lines
No EOL
483 B
XML
13 lines
No EOL
483 B
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<DataTemplate x:Key="Everything_NormalMessage">
|
|
<ListViewItem>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock>Module: </TextBlock>
|
|
<TextBlock Text="{Binding Path=@Module}"/>
|
|
<Separator/>
|
|
<TextBlock Text="{Binding Path=/.}"/>
|
|
</StackPanel>
|
|
</ListViewItem>
|
|
</DataTemplate>
|
|
</ResourceDictionary> |