Главная страница

Солуянова Семестровая Марио. Введение в ии


Скачать 0.58 Mb.
НазваниеВведение в ии
Дата12.06.2022
Размер0.58 Mb.
Формат файлаdocx
Имя файлаСолуянова Семестровая Марио.docx
ТипДокументы
#586456
страница5 из 8
1   2   3   4   5   6   7   8
1   2   3   4   5   6   7   8



{







Graphics xGraph = Graphics.FromImage(MainImage);















SolidBrush b = new SolidBrush(Color.Silver);







xGraph.FillRectangle(b, new Rectangle(0, 0, Width, Height));















b.Dispose();







xGraph.Dispose();















Invalidate();























}







}







}




using System;



















using System.Collections.Generic;













using System.ComponentModel;













using System.Data;













using System.Drawing;













using System.Text;













using System.Windows.Forms;



























namespace MarioRectangle













{













public partial class MainForm : Form













{













public Bitmap MainImage;



























public MainForm()













{













InitializeComponent();













}



























private void MainForm_Load(object sender, EventArgs e)













{













MainImage = new Bitmap(Width, Height);









































}



























private void bDraw_Click(object sender, EventArgs e)













{













int iTop, iLeft, iWidth, iHeight;













iTop = Convert.ToInt32(tTop.Text);













iLeft = Convert.ToInt32(tLeft.Text);













iWidth = Convert.ToInt32(tWidth.Text);













iHeight = Convert.ToInt32(tHeight.Text);









































Rectangle rec = new Rectangle(iLeft, iTop, iWidth, iHeight);













Graphics xGraph = Graphics.FromImage(MainImage);













Pen p = new Pen(Color.Red);



























xGraph.DrawRectangle(p, rec);















написать администратору сайта