window1.xaml
来自「using event and delegate to perfoem cloc」· XAML 代码 · 共 11 行
XAML
11 行
<Window x:Class="Delegates.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Digital Clock" Height="169" Width="297">
<Grid>
<TextBox Height="42" Margin="18,21,0,0" Name="digital" VerticalAlignment="Top" HorizontalAlignment="Left" Width="247" IsReadOnly="True" FontSize="38" FontFamily="Courier New" TextAlignment="Center" >00:00:00</TextBox>
<Button HorizontalAlignment="Left" Margin="53,85,0,0" Name="start" Width="75" Height="23" VerticalAlignment="Top" Click="startClick">開始</Button>
<Button HorizontalAlignment="Left" Margin="154,85,0,0" Name="stop" Width="75" Height="23" VerticalAlignment="Top" Click="stopClick">停止</Button>
</Grid>
</Window>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?