quoteofthedaywindow.xaml

来自「C#高级编程第6版随书源代码 值得下载」· XAML 代码 · 共 14 行

XAML
14
字号
<Window x:Class="QuoteOfTheDay.QuoteOfTheDayWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Quote Of The Day" Height="303" Width="359" xmlns:my="clr-namespace:System;assembly=mscorlib">
    <Grid>
    <Grid.ColumnDefinitions>
      <ColumnDefinition Width="0.361823361823362*" />
      <ColumnDefinition Width="0.638176638176638*" />
    </Grid.ColumnDefinitions>
    <Button Height="73" Margin="17,19,15,0" Name="buttonGetQuote" VerticalAlignment="Top" Grid.ColumnSpan="2">Get Quote</Button>
    <TextBox Margin="19,105,15,21" Name="textQuote" Grid.ColumnSpan="2" TextWrapping="Wrap"></TextBox>
  </Grid>
</Window>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?