ToolContentControl.axaml 638 B

1234567891011121314151617181920
  1. <ResourceDictionary xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Design.PreviewWith>
  4. <ToolContentControl Width="300" Height="300" />
  5. </Design.PreviewWith>
  6. <ControlTheme x:Key="{x:Type ToolContentControl}" TargetType="ToolContentControl">
  7. <Setter Property="Template">
  8. <ControlTemplate>
  9. <DockableControl TrackingMode="Visible">
  10. <ContentControl Content="{Binding}"
  11. ContentTemplate="{Binding}" />
  12. </DockableControl>
  13. </ControlTemplate>
  14. </Setter>
  15. </ControlTheme>
  16. </ResourceDictionary>