diff --git a/Demo.WindowsPresentation/CustomMarkers/Test.xaml.cs b/Demo.WindowsPresentation/CustomMarkers/Test.xaml.cs new file mode 100644 --- /dev/null +++ b/Demo.WindowsPresentation/CustomMarkers/Test.xaml.cs @@ -0,0 +1,17 @@ +using System.Windows.Controls; + +namespace Demo.WindowsPresentation.CustomMarkers +{ + /// + /// Interaction logic for Test.xaml + /// + public partial class Test : UserControl + { + public Test(string txt) + { + InitializeComponent(); + + text.Text = txt; + } + } +}