mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-02 15:50:51 +08:00
34 lines
709 B
C#
34 lines
709 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public class BlockConnector : ContentControl
|
|
{
|
|
public ConnectorOrientation Orientation { get; set; }
|
|
|
|
public ConnectorInfoBase Info
|
|
{
|
|
get
|
|
{
|
|
if (Content is ConnectorInfoBase connectorInfo)
|
|
return connectorInfo;
|
|
|
|
return this.DataContext as ConnectorInfoBase;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
public class BlockGrid : Grid
|
|
{
|
|
}
|
|
|
|
}
|