Sadece tanımladığınız şeyi yapan basit bir uygulama oluşturdum ve benim için çalıştı.
XAML:
<Window x:Class="WpfApplication1.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>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<TextBox Grid.Row="0" AcceptsReturn="True" Height="50"
Text="{Binding Path=Text, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
<Button Grid.Row="1" Click="Button_Click">Button</Button>
</Grid>
</Window>
ViewModel:
class ViewModel : INotifyPropertyChanged
{
private string text = string.Empty;
public string Text
{
get { return this.text; }
set
{
this.text = value;
this.OnPropertyChanged("Text");
}
}
public event PropertyChangedEventHandler PropertyChanged;
private void OnPropertyChanged(string propName)
{
var eh = this.PropertyChanged;
if(null != eh)
{
eh(this, new PropertyChangedEventArgs(propName));
}
}
}
ViewModel
bir örneği Window
için DataContext
olarak ayarlanır.
private void Button_Click(object sender, RoutedEventArgs e)
{
this.model.Text = "Hello\r\nWorld";
}
(Ben görünümü gerçekten doğrudan ViewModel en Text
özelliğini değiştirmek gerektiğini fark, ancak bu sadece hızlı örnek uygulaması içindir.) Bu sonuçlanır
: Son olarak, Button_Click()
uygulanmasıdır TextBox
'un ilk satırında "Merhaba" kelimesi ve "Dünya" ikinci satırdadır.
Kodunuzu gönderirseniz, bu örneklemden neyin farklı olduğunu görebiliriz?
Teşekkürler Andy, problemimi sonunda anladım. Desteğiniz için çok teşekkür ederim. – deepak