mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-11 19:56:36 +08:00
26 lines
691 B
C#
26 lines
691 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Windows;
|
|||
|
|
|
|||
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|||
|
|
{
|
|||
|
|
public static class ConnectorStyleProps
|
|||
|
|
{
|
|||
|
|
public static readonly DependencyProperty StyleProperty =
|
|||
|
|
DependencyProperty.RegisterAttached("Style", typeof(Style), typeof(ConnectorStyleProps),
|
|||
|
|
new FrameworkPropertyMetadata(default(Style)));
|
|||
|
|
|
|||
|
|
public static Style GetStyle(DependencyObject d)
|
|||
|
|
{
|
|||
|
|
return (Style)d.GetValue(StyleProperty);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public static void SetStyle(DependencyObject d, Style value)
|
|||
|
|
{
|
|||
|
|
d.SetValue(StyleProperty, value);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|