24 lines
512 B
C#
24 lines
512 B
C#
using System;
|
|
using System.Xml;
|
|
using System.Linq;
|
|
using System.Xml.Linq;
|
|
using System.ComponentModel;
|
|
using System.Runtime.CompilerServices;
|
|
using AR;
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Drawing;
|
|
|
|
|
|
namespace TrendCtrlII
|
|
{
|
|
public static class MethodExts
|
|
{
|
|
public static void DrawRectangle(this System.Drawing.Graphics graphics, Pen pen, System.Drawing.RectangleF rect)
|
|
{
|
|
graphics.DrawRectangle(pen, rect.X, rect.Y, rect.Width, rect.Height);
|
|
}
|
|
}
|
|
|
|
}
|