Files
Triangle.NET/Triangle.NET/TestApp/Views/AboutView.cs
T
SND\wo80_cp a9de99f651 More code reorganization (3)
git-svn-id: https://triangle.svn.codeplex.com/svn@75023 0e2699bc-83d4-4a8f-98e7-55e24ab8c7a5
2014-05-29 21:57:28 +00:00

54 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using TriangleNet;
using System.Diagnostics;
using TriangleNet.Geometry;
namespace MeshExplorer.Views
{
public partial class AboutView : UserControl, IView
{
public AboutView()
{
InitializeComponent();
}
private void lbCodeplex_Clicked(object sender, EventArgs e)
{
try
{
ProcessStartInfo info = new ProcessStartInfo("http://triangle.codeplex.com/");
Process.Start(info);
}
catch (Exception)
{ }
}
#region IView
public void HandleNewInput(IPolygon geometry)
{
}
public void HandleMeshImport(IPolygon geometry, Mesh mesh)
{
}
public void HandleMeshUpdate(Mesh mesh)
{
}
public void HandleMeshChange(Mesh mesh)
{
}
#endregion
}
}