English | Chinese
eDrawing Controls for Winform and WPF
Winform:
Add a measure button(2023.3.29)
WPF
PreView Assembly Document
PreView Drawing Document
Print Document
Create ToolTip
Install-Package DuEDrawingControl -Version 1.0.1
1.eDrawing Required
2.NameSpace
using DuEDrawingControl;
3.Modify the platform as X64
4.Add Control
private EDrawingView eDrawingView;
private void Form1_Load(object sender, EventArgs e)
{
//add edrawing control when form loaded
eDrawingView = new EDrawingView()
{
Dock = DockStyle.Fill
};
paneleDrawing.Controls.Add(eDrawingView);
}
Clone this repository for more
private DuEDrawingControl.EDrawingWPFControl edrawing;
public MainWindow()
{
InitializeComponent();
//Add edrawing control
edrawing = new DuEDrawingControl.EDrawingWPFControl() {
Margin = new Thickness(5)
};
edrawingPanel.Children.Add(edrawing);
}
Clone this repository for more