DrawableViewer 2024.2.0
dotnet add package DrawableViewer --version 2024.2.0
NuGet\Install-Package DrawableViewer -Version 2024.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DrawableViewer" Version="2024.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DrawableViewer --version 2024.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DrawableViewer, 2024.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DrawableViewer as a Cake Addin #addin nuget:?package=DrawableViewer&version=2024.2.0 // Install DrawableViewer as a Cake Tool #tool nuget:?package=DrawableViewer&version=2024.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Drawable object viewer
GstarCAD Extension Library
This is an unofficial extension library enhanced for GstarCAD .NET SDK.
You can get GstarCAD SDK on the official website https://www.gstarcad.com/download/, or on the Nuget Gallery.
Windows Forms Sample
Windows forms sample can be written:
using (var circle = new Circle(Point3d.Origin, Vector3d.ZAxis, 100))
using (var form = new Form { Size = new Size(300, 350) })
{
var viewer = new DrawableViewer() { Dock = DockStyle.Fill };
viewer.Add(circle);
viewer.ZoomExtents();
viewer.CanMouseOperation = false;
form.Controls.Add(viewer);
form.ShowDialog();
}
WPF MVVM Sample
The xaml file can be written:
<Window x:Class="DrawableViewer.Test.WpfViewer"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:dv="http://shaprer.gstarcad.extensions/xaml"
Height="450" Width="800">
<Grid>
<WindowsFormsHost Grid.Row="0" Grid.Column="0" Margin="10"
dv:DrawableViewerBehavior.DrawableObject="{Binding Drawable}"
dv:DrawableViewerBehavior.AutoZoomingWhenDrawableChanged="True"
dv:DrawableViewerBehavior.CanMouseOperation="False">
<dv:DrawableViewer />
</WindowsFormsHost>
</Grid>
</Window>
Build the project
> build.bat
If 'msbuild' is not recognized, please set compilation environment firstly.
Deployment
This library is published as a nuget package in nuget.org.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net48 is compatible. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.8
- GstarCADNET (>= 24.0.0 && < 26.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.