initial commit
This commit is contained in:
23
Viewer/TrendViewer/UControl/TrendCtrlII/MethodExts.cs
Normal file
23
Viewer/TrendViewer/UControl/TrendCtrlII/MethodExts.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user