1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 13:16:09 +03:00
ProxySU/ProxySU_Core/Views/TextBoxWindow.xaml
2021-03-17 11:58:56 +08:00

18 lines
809 B
XML

<metro:MetroWindow x:Class="ProxySU_Core.Views.TextBoxWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:ProxySU_Core.Views"
xmlns:metro="http://metro.mahapps.com/winfx/xaml/controls"
mc:Ignorable="d"
Title="TextBoxWindow" Height="450" Width="800">
<Grid>
<TextBox Margin="20"
Text="{Binding Path=Message}"
TextWrapping="Wrap"
FontSize="14"
Style="{StaticResource MahApps.Styles.TextBox}" />
</Grid>
</metro:MetroWindow>