22 lines
929 B
XML
22 lines
929 B
XML
<Window x:Class="WPF基础_9_InkCanvas1.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"
|
|
Icon="public/logo/1.ico"
|
|
Title="WPF基础_9_InkCanvas1" Height="450" Width="800">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
|
|
<InkCanvas Grid.Row="1" Name="MyInkCanvas" Background="LightYellow" EditingMode="Ink">
|
|
<Button>按钮</Button>
|
|
<Image Source="public/images/003540AH4M72.jpg" InkCanvas.Top="10" InkCanvas.Left="10" Width="287"
|
|
Height="319" />
|
|
</InkCanvas>
|
|
</Grid>
|
|
|
|
</Window> |