Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のように、どのコーナーにもポインターを配置して境界線を設計するにはどうすればよいですか。
XAML を使用して、背景色とその角 (左上など) にポインターを使用して境界線を作成することは可能ですか?
スクリーンショットは、Books.ShowMSDN リソースのサンプル プロジェクトからのものです。
Books.Show
あなたはそれを次のようにすることができます
<StackPanel> <Path Data="M0,0 L5,5 L0,5" HorizontalAlignment="Left" Fill="Red" Stretch="Fill" Height="20" Width="20" Margin="0,0,0,-2"></Path> <Border Height="50" Background="Red" /> </StackPanel>