Im在wpf/xaml中綁定有一些問題。有這個簡單的文件:WPF簡單綁定到對象屬性
<Window x:Class="test.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<Grid>
<TextBlock Height="21" Foreground="Black" Margin="74,98,84,0" Name="textBlock1" VerticalAlignment="Top" Text="{Binding MyText}" />
</Grid>
</Window>
我在哪裏要將textblock的內容綁定到我的屬性「MyText」。我的代碼看起來像這樣:
總而言之非常簡單,但是當我啓動textblock時沒有內容 - howcome?
更新:我不甚至在酒店 – H4mm3rHead 2009-09-22 20:00:10