RecipeHelpView.xaml 725 B

1234567891011
  1. <Window x:Class="Aitex.UI.RecipeEditor.RecipeHelpView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="Help" Height="275" Width="479" WindowStyle="SingleBorderWindow"
  5. xmlns:app="clr-namespace:Aitex.UI.RecipeEditor"
  6. Topmost="True" WindowStartupLocation="CenterOwner"
  7. xmlns:toolkit="clr-namespace:Xceed.Wpf.Toolkit;assembly=Xceed.Wpf.Toolkit"
  8. Background="White" FontFamily="Arial,SimSun" ResizeMode="CanResize">
  9. <toolkit:RichTextBox x:Name="_richTextBox" BorderBrush="Gray" IsReadOnly="True" Text="{Binding Notes}" ScrollViewer.VerticalScrollBarVisibility="Auto" />
  10. </Window>