WPF - Derived Property setting in Xaml

Started by
-1 comments, last by maya18222 11 years, 12 months ago
Given the following. How do I set MyString in Xaml?


namespace WpfApplication3
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public class MainWindow : Window
{
public string MyString
{
get;
set;
}
public MainWindow()
{

}
}
}
// -------------------------------------
<Window x:Class="WpfApplication3.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
>
</Window>

This topic is closed to new replies.

Advertisement