7 changed files with 121 additions and 110 deletions
@ -1,23 +1,22 @@
@@ -1,23 +1,22 @@
|
||||
<UserControl |
||||
x:Class="ICSharpCode.XamlDesigner.DocumentView" |
||||
xmlns="http://schemas.microsoft.com/netfx/2007/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
xmlns:Integration="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration" |
||||
xmlns:TextEditor="clr-namespace:ICSharpCode.TextEditor;assembly=ICSharpCode.TextEditor" |
||||
xmlns:Default="clr-namespace:ICSharpCode.XamlDesigner" |
||||
xmlns:DesignerControls="clr-namespace:ICSharpCode.WpfDesign.Designer.Controls;assembly=ICSharpCode.WpfDesign.Designer" |
||||
> |
||||
|
||||
<DockPanel> |
||||
<DesignerControls:EnumBar Value="{Binding Mode}" |
||||
DockPanel.Dock="Bottom"/> |
||||
<Grid> |
||||
<Integration:WindowsFormsHost Visibility="{Binding InXamlMode, Converter={StaticResource CollapsedWhenFalse}}"> |
||||
<TextEditor:TextEditorControl x:Name="uxTextEditor" /> |
||||
</Integration:WindowsFormsHost> |
||||
<ContentPresenter Content="{Binding DesignSurface}" |
||||
Visibility="{Binding InDesignMode, Converter={StaticResource CollapsedWhenFalse}}"/> |
||||
</Grid> |
||||
</DockPanel> |
||||
|
||||
x:Class="ICSharpCode.XamlDesigner.DocumentView" |
||||
xmlns="http://schemas.microsoft.com/netfx/2007/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
xmlns:Default="clr-namespace:ICSharpCode.XamlDesigner" |
||||
xmlns:DesignerControls="clr-namespace:ICSharpCode.WpfDesign.Designer.Controls;assembly=ICSharpCode.WpfDesign.Designer" |
||||
xmlns:AvalonEdit="http://icsharpcode.net/sharpdevelop/avalonedit" |
||||
> |
||||
<DockPanel> |
||||
<DesignerControls:EnumBar |
||||
Value="{Binding Mode}" |
||||
DockPanel.Dock="Bottom"/> |
||||
<Grid> |
||||
<AvalonEdit:TextEditor |
||||
x:Name="uxTextEditor" |
||||
SyntaxHighlighting="XML" |
||||
Visibility="{Binding InXamlMode, Converter={StaticResource CollapsedWhenFalse}}" /> |
||||
<ContentPresenter Content="{Binding DesignSurface}" |
||||
Visibility="{Binding InDesignMode, Converter={StaticResource CollapsedWhenFalse}}"/> |
||||
</Grid> |
||||
</DockPanel> |
||||
</UserControl> |
Loading…
Reference in new issue