คำถามติดแท็ก code-behind

3
เปลี่ยนคุณสมบัติ Canvas.Left ในโค้ดข้างหลัง?
ฉันมีรูปสี่เหลี่ยมผืนผ้าใน XAML ของฉันและต้องการเปลี่ยนCanvas.Leftคุณสมบัติในโค้ดด้านหลัง: <UserControl x:Class="Second90.Page" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="400" Height="300" KeyDown="txt_KeyDown"> <Canvas> <Rectangle Name="theObject" Canvas.Top="20" Canvas.Left="20" Width="10" Height="10" Fill="Gray"/> </Canvas> </UserControl> แต่ไม่ได้ผล: private void txt_KeyDown(object sender, KeyEventArgs e) { theObject.Canvas.Left = 50; } ไม่มีใครรู้ว่าไวยากรณ์คืออะไร?
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.