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.
请告诉我,当双击发生时如何更改 Canvas 控件的背景颜色以及再次发生双击时,必须在 windows Phone 7 中更改以前的颜色(在画布控件中来回应用颜色)。
谢谢。
首先,在 XAML 中为 Canvas 控件设置 x:Name 属性 - 例如 x:Name="canvas"。在后面的代码中,将其作为变量引用并使用以下代码更改背景:
canvas.Background = new SolidColorBrush(Color.Red)