22 lines
870 B
XML
22 lines
870 B
XML
<UserControl
|
|
x:Class="PlixP.Views.Template.SuggestionBox"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
xmlns:prism="http://prismlibrary.com/"
|
|
xmlns:renders="clr-namespace:PlixP.Renders"
|
|
xmlns:template="clr-namespace:PlixP.Views.Template"
|
|
xmlns:views="clr-namespace:PlixP.Views"
|
|
prism:ViewModelLocator.AutoWireViewModel="True"
|
|
TextElement.FontSize="13"
|
|
TextElement.FontWeight="Regular"
|
|
TextOptions.TextFormattingMode="Ideal"
|
|
TextOptions.TextRenderingMode="Auto">
|
|
<Grid Height="180">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
</Grid>
|
|
</UserControl>
|