Files
cs2_united/cs2_chs/TextView.xaml
世元 李 ab9535dc03 last
2020-03-22 18:44:07 +08:00

14 lines
992 B
XML

<Window x:Class="cs2_chs.TextView"
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:cs2_chs"
mc:Ignorable="d"
Topmost="True" AllowsTransparency="True" Title="TextView" Height="189.956" Width="1070.203" WindowStyle="None" ResizeMode="NoResize" ShowInTaskbar="False" Background="#00000000">
<Grid Background="#00000000" MouseDown="Grid_MouseDown" MouseUp="Grid_MouseUp" MouseWheel="Grid_MouseWheel">
<TextBlock x:Name="textbar" HorizontalAlignment="Left" Height="170" Margin="10,10,0,0" TextWrapping="Wrap" Text="TextBlock" VerticalAlignment="Top" Width="1050" FontSize="36" Background="Transparent" Foreground="White" KeyDown="textbar_KeyDown" KeyUp="textbar_KeyUp"/>
</Grid>
</Window>