4c7ca69e27
git-svn-id: https://triangle.svn.codeplex.com/svn@67941 0e2699bc-83d4-4a8f-98e7-55e24ab8c7a5
30 lines
629 B
C#
30 lines
629 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace MeshExplorer
|
|
{
|
|
public partial class FormExport : Form
|
|
{
|
|
public FormExport()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override void OnPaint(PaintEventArgs e)
|
|
{
|
|
base.OnPaint(e);
|
|
|
|
var rect = this.ClientRectangle;
|
|
rect.Height -= 40;
|
|
|
|
e.Graphics.FillRectangle(Brushes.DimGray, rect);
|
|
}
|
|
}
|
|
}
|