私は初心者で、フォームWPF
のボタンをシミュレートするためにボタン (X) を作成する必要があります。X
まず設定しWindowStyle="None"
ます。次に、次のようにしRectangle
ます。
<Rectangle Height="16" HorizontalAlignment="Left" Margin="482,4,0,0" Name="x_btn" Stroke="#00000000" VerticalAlignment="Top" Width="17" MouseEnter="x_btn_MouseEnter" MouseLeftButtonUp="x_btn_MouseLeftButtonUp">
<Rectangle.Fill>
<ImageBrush ImageSource="/Red%20Crescent;component/Images/x_btn.png" />
</Rectangle.Fill>
</Rectangle>
Background Image
この後、コードの背後にある OnMousEnter イベントを変更したいと思います。
private void x_btn_MouseEnter(object sender, MouseEventArgs e)
{
}
private void x_btn_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
this.Close();
}
できるだけ早く助けてください。
注: a を使用しようとしましたButton
が、境界線が残っているため、それは望ましくありません。