フルスクリーンで実行される C# WPF アプリケーションを使用しています。キャンバスの右上にボタンを配置してアプリケーションを実行すると、ボタンが表示されません。私が考え出したのは、画面の解像度と同じ幅と高さにしたにもかかわらず、キャンバスが画面よりも大きいということです。
PS: アプリケーションは別のコンピューターで正常に動作し、キャンバス サイズは正しいのですが、ラップトップまたは PC で実行すると同じ問題が発生します。
<Window x:Name="Mywindow" x:Class="Graduation_Project.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" SizeToContent="WidthAndHeight" Height="768" Width="1366" WindowStyle="None"
ResizeMode="NoResize" WindowStartupLocation="CenterScreen"
WindowState="Maximized" Topmost="True" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<Canvas Name="workspace">
<Label x:Name="Print" Content="Label" Canvas.Left="57" Canvas.Top="719" Width="74"/>
</Canvas>
</Window>