1
using System
.Windows
.Forms
;
5 namespace LivingGraph
.GUI
8 public class RelationBase
15 public RelationBase(NodeBase source
, NodeBase sink
)
21 public Color backgroundColor
= Color
.Blue
;
22 public void Paint(Graphics graphics
)
25 Pen pen
= new Pen(Color
.Black
, 4);
28 Font font
= new Font("Arial", fontHeight
);
30 SolidBrush brush
= new SolidBrush(backgroundColor
);
31 //graphics.FillEllipse(brush, 0, 0, Width, Height);
32 SolidBrush textBrush
= new SolidBrush(Color
.Black
);
34 graphics
.DrawLine(pen
, m_Source
.Location
, m_Sink
.Location
);