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コードを持っています:
<Grid x:Name="Sample" Canvas.ZIndex="20"...
C# を使用してこのグリッドの ZIndex を変更するにはどうすればよいですか?
わかりました、私は答えを見つけました。
それを使用します:
Canvas.SetZIndex(obj, N);
obj は Grid (または別の UIElement)、N は ZIndex (Int32) です。