19 lines
936 B
XML
19 lines
936 B
XML
<Window x:Class="_6InCanvas鼠标绘制.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.png" Title="_6InCanvas鼠标绘制" Height="450" Width="800">
|
|
<InkCanvas Background="LightYellow" EditingMode="Ink">
|
|
<!-- 设置画笔属性 -->
|
|
<InkCanvas.DefaultDrawingAttributes>
|
|
<DrawingAttributes Color="Red" Width="5" />
|
|
</InkCanvas.DefaultDrawingAttributes>
|
|
|
|
<Border Margin="9" BorderBrush="Red" BorderThickness="2">
|
|
<Image Source="public/logo.png" InkCanvas.Top="10" InkCanvas.Left="10" Width="287"
|
|
Height="319" />
|
|
</Border>
|
|
</InkCanvas>
|
|
</Window> |