0
如何將TextBox
的Text
屬性綁定到在代碼隱藏中定義的FoundationHeight
clr-property。如何綁定到XAML中代碼隱藏中定義的屬性
XAML
<TextBox Text="{Binding FoundationHeight}"/>
C#
public double FoundationHeight { get; set; }
public AssignColumnPropertiesWindow()
{
InitializeComponent();
FoundationHeight = 60;
}
謝謝非常。 – Vahid 2014-08-28 08:16:44
不客氣;)確保你接受答案,如果它爲你工作得很好 – Damascus 2014-08-28 08:35:51