mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
28 lines
952 B
XML
28 lines
952 B
XML
<ResourceDictionary xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:controls="using:Serein.Workbench.Avalonia.Custom.Views">
|
|
|
|
<!--
|
|
Additional resources
|
|
Using Control Themes:
|
|
https://docs.avaloniaui.net/docs/basics/user-interface/styling/control-themes
|
|
Using Theme Variants:
|
|
https://docs.avaloniaui.net/docs/guides/styles-and-resources/how-to-use-theme-variants
|
|
-->
|
|
|
|
<Design.PreviewWith>
|
|
<StackPanel Width="400" Spacing="10">
|
|
<StackPanel Background="{DynamicResource SystemRegionBrush}">
|
|
<controls:NodeJunctionView />
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</Design.PreviewWith>
|
|
|
|
<ControlTheme x:Key="{x:Type controls:NodeJunctionView}" TargetType="controls:NodeJunctionView">
|
|
<Setter Property="Template">
|
|
<ControlTemplate>
|
|
</ControlTemplate>
|
|
</Setter>
|
|
</ControlTheme>
|
|
</ResourceDictionary>
|