我正在使用Silverlight的Bing地圖API,並且需要在地圖上循環選擇圖釘並執行一些格式化引腳名稱不等於代碼中其他位置的值。使用uielement.GetValue(),錯誤「非靜態字段需要對象引用」
下面是函數:
private void deselectAllPins(MapLayer mainMapLayer)
{
foreach (UIElement ui in mainMapLayer.Children)
if (ui is SitePushpin)
{
SolidColorBrush scb = new SolidColorBrush(Colors.Red);
if (ui.GetValue(SitePushpin.SiteName).ToString() != hiddenShortName.Text)
{
....formatting
}
}
}
的 'SitePushpin' 被聲明爲:
public class SitePushpin : Pushpin
{
public string SiteName { get; set; }
public SitePushpin(Color Bg)
{
this.Name = Guid.NewGuid().ToString();
SolidColorBrush scb = new SolidColorBrush(Bg);
this.Background = scb;
}
}
我的問題在與ui.GetValue if語句的用武之地。這是無法看到網站名稱屬性,並與錯誤
來了「是必需的非靜態字段的對象引用」
任何想法如何,我可以得到它看到這個價值?
非常感謝 帽
它看起來像你正在使用屬性訪問的變量名稱。這是正確的,還是你的意思是通過依賴屬性訪問名爲SiteName的屬性?下面的「答案」可能會編譯(不知道SiteName如何不是DP),但實際的代碼對我來說還沒有意義(還)。你能澄清一切嗎? –