12 lines
613 B
XML
12 lines
613 B
XML
<Window x:Class="WPF控件_2_鼠标光标.MainWindow"
|
|
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"
|
|
mc:Ignorable="d"
|
|
Title="WPF控件_2_鼠标光标" Height="450" Width="800">
|
|
<StackPanel HorizontalAlignment="Left">
|
|
<Button Cursor="Help" Padding="15 5">帮助</Button>
|
|
<Button Padding="15 5">等待</Button>
|
|
</StackPanel>
|
|
</Window> |