using System;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Diagnostics;
using Kitware.VTK;
namespace ActiViz.Examples
{
public class renderTest : Form
{
public renderTest()
{
InitializeComponent();
}
private void InitializeComponent()
{
this.renderWindowControl1 = new Kitware.VTK.RenderWindowControl();
this.SuspendLayout();
this.renderWindowControl1.AddTestActors = false;
this.renderWindowControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.renderWindowControl1.Location = new System.Drawing.Point(12, 12);
this.renderWindowControl1.Name = "renderWindowControl1";
this.renderWindowControl1.Size = new System.Drawing.Size(419, 326);
this.renderWindowControl1.TabIndex = 0;
this.renderWindowControl1.TestText = null;
this.renderWindowControl1.Dock = DockStyle.Fill;
this.renderWindowControl1.Load += new System.EventHandler(this.renderWindowControl1_Load);
//
// Form1
//
this.ClientSize = new System.Drawing.Size(800, 800);
this.Controls.Add(this.renderWindowControl1);
this.Name = "Form1";
this.ResumeLayout(false);
}
protected override void Dispose(bool disposing)
{
try
{
if (disposing)
{
structuredGrid.Dispose();
points.Dispose();
colors.Dispose();
filter.Dispose();
renderWindow.Dispose();
actor.Dispose();
mapper.Dispose();
}
}
catch (Exception)
{
}
base.Dispose(disposing);
}
private Kitware.VTK.RenderWindowControl renderWindowControl1;
vtkStructuredGrid structuredGrid;
vtkPoints points;
vtkUnsignedCharArray colors;
vtkStructuredGridGeometryFilter filt
vtk 通过指针实时刷新界面
最新推荐文章于 2025-02-19 10:45:15 发布