18 lines
763 B
XML
18 lines
763 B
XML
<UserControl x:Class="StormChatWPF.UI.UserMeHeadInfo"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:StormChatWPF.UI"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="60" d:DesignWidth="200">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="60*"/>
|
|
<ColumnDefinition Width="120*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Image x:Name="image" Height="60" Margin="0,0,0,0" VerticalAlignment="Top"/>
|
|
|
|
</Grid>
|
|
</UserControl>
|