我正在使用 C#,Silverlight。
某些对象的某些属性似乎对我不可用。例如,TextBlock 类应该有一个 Background 属性,但我的 Visual Studio 似乎没有意识到它。
我的示例代码:
// myTextBlock is a TextBlock, myColor is a SolidColorBrush.Color
// these objects were both initiated elsewhere
myTextBlock.Foreground= myColor;
Foreground 属性工作得很好。
但是,如果我尝试 Background 属性:
myTextBlock.Background = myColor;
这不起作用,因为 Visual Studio 无法识别 TextBlocks 具有 Background 属性。
TextBlock 类的在线文档:http: //msdn.microsoft.com/en-us/library/system.windows.controls.textblock.aspx
知道发生了什么吗?