14 lines
844 B
XML
14 lines
844 B
XML
<UserControl x:Class="Filtration.Views.ToolPanes.BlockOutputPreviewView"
|
|
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:toolPanes="clr-namespace:Filtration.ViewModels.ToolPanes"
|
|
d:DataContext="{d:DesignInstance Type=toolPanes:BlockOutputPreviewViewModel}"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="300" d:DesignWidth="300">
|
|
<Grid>
|
|
<TextBox IsReadOnly="True" Text="{Binding PreviewText, Mode=OneWay}" ToolTip="{Binding PreviewText}" Padding="5" Background="Transparent" BorderThickness="0" />
|
|
</Grid>
|
|
</UserControl>
|