aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Modules/Tango.FSE.Diagnostics/Project/Widgets/Text/TextWidgetView.xaml
blob: cf034f28b4d70a9dc57c3541ad468c879b2d4a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<UserControl x:Class="Tango.FSE.Diagnostics.Project.Widgets.Text.TextWidgetView"
             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:Tango.FSE.Diagnostics.Project.Widgets.Text"
             mc:Ignorable="d" 
             d:DesignHeight="100" d:DesignWidth="800" d:DataContext="{d:DesignInstance Type=local:TextWidget,IsDesignTimeCreatable=False}">
    <Grid>
        <Viewbox Stretch="Uniform">
            <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Text="{Binding Text}" FontSize="16">
                <TextBlock.Foreground>
                    <SolidColorBrush Color="{Binding Color}" />
                </TextBlock.Foreground>
            </TextBlock>
        </Viewbox>
    </Grid>
</UserControl>