コード例 #1
0
ファイル: GDISurface.cs プロジェクト: ehasis/alsing
        public void Clear(Color color)
        {
            var b = new GDIBrush(color);

            Clear(b);
            b.Dispose();
        }
コード例 #2
0
ファイル: GDISurface.cs プロジェクト: ehasis/alsing
        public void FillRect(Color color, int x, int y, int width, int height)
        {
            var b = new GDIBrush(color);

            FillRect(b, x, y, width, height);
            b.Dispose();
        }
コード例 #3
0
ファイル: GDISurface.cs プロジェクト: attila3453/alsing
 public void Clear(Color color)
 {
     var b = new GDIBrush(color);
     Clear(b);
     b.Dispose();
 }
コード例 #4
0
ファイル: GDISurface.cs プロジェクト: attila3453/alsing
 public void FillRect(Color color, int x, int y, int width, int height)
 {
     var b = new GDIBrush(color);
     FillRect(b, x, y, width, height);
     b.Dispose();
 }