KZ
bin
Негізгі бет
Қазірдің өзінде танымал
Тікелей эфир
Ұнаған бейнелер
Қайтадан қараңыз
Жазылымдар
Кіру
Тіркелу
Ең жақсы KZbin
Фильм және анимация
Автокөліктер мен көлік құралдары
Музыка
Үй жануарлары мен аңдар
Спорт
Ойындар
Комедия
Ойын-сауық
Тәжірибелік нұсқаулар және стиль
Ғылым және технология
Capture Screenshot using c#
9:39
C# Winform Paint
11:27
УНО Реверс в Амонг Ас : игра на выбывание
0:19
Этот метод используют в Японии | Метод “Shisa Kanko” | Маргулан Сейсембай #маргулансейсембай
0:32
БАБУШКА ШАРИТ #shorts
0:16
Қайрат Әділгерей Дариға Бадықова - ҚЫЗЫҚ TIMES | Хотя бы в кино, Айсара, Келінжан | Кызык Live
54:58
Create Paint Using C#, Graphics in C#
Рет қаралды 13,780
Facebook
Twitter
Жүктеу
1
Жазылу 1 М.
Coding with Libino
Күн бұрын
Пікірлер: 28
@RexmondSavadera
8 ай бұрын
Thank you Very much your tutorial is very helpful and useful
@codingwithlibino
5 ай бұрын
Thank you
@jesusaurelioperezcota3706
9 ай бұрын
Increible video me ayudó muchisimo, Muchas graciaas bendiciones!! :D
@codingwithlibino
5 ай бұрын
Thank you
@creatingcreations8647
3 жыл бұрын
Super bro please also make more shapes and brushes
@codingwithlibino
3 жыл бұрын
Ok sure bro
@creatingcreations8647
3 жыл бұрын
@@codingwithlibino thanks bro 😊
@codingwithlibino
10 ай бұрын
kzbin.info/www/bejne/Y4i0qGeDqsmLb8k
@asmaaahmed857
2 жыл бұрын
Please I want to make the white background a picture that I can add and draw on
@codingwithlibino
2 жыл бұрын
You can add rectangle white color
@asmaaahmed857
2 жыл бұрын
@@codingwithlibino What is the method that enables me to draw on a picture box?
@codingwithlibino
10 ай бұрын
kzbin.info/www/bejne/Y4i0qGeDqsmLb8k
@gustavooliveira2662
Жыл бұрын
Certified by gustavo
@codingwithlibino
Жыл бұрын
Thank you
@codingwithlibino
10 ай бұрын
kzbin.info/www/bejne/Y4i0qGeDqsmLb8k
@creatingcreations8647
3 жыл бұрын
Bro waiting for new tutorials😯
@codingwithlibino
10 ай бұрын
kzbin.info/www/bejne/Y4i0qGeDqsmLb8k
@codingwithlibino
3 жыл бұрын
For Downloads Blogspot : dotnetintamils.blogspot.com/2021/06/create-paint-using-c.html using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Drawing.Imaging; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace AdvancePaint { public partial class Form1 : Form { Bitmap bm; Graphics g; bool paint = false; Point px, py; Pen p = new Pen(Color.Black,1); Pen Eraser = new Pen(Color.White, 10); int index; int x, y, sx, sy, cx, cy; Color New_Color; ColorDialog cd = new ColorDialog(); public Form1() { InitializeComponent(); bm = new Bitmap(Pic.Width, Pic.Height); g = Graphics.FromImage(bm); g.Clear(Color.White); Pic.Image = bm; } private void BtnPencil_Click(object sender, EventArgs e) { index = 1; } private void Pic_MouseDown(object sender, MouseEventArgs e) { paint = true; py = e.Location; cx = e.X; cy = e.Y; } private void Pic_MouseMove(object sender, MouseEventArgs e) { if(paint) { if(index==1) { px = e.Location; g.DrawLine(p, px, py); py = px; } if (index == 2) { px = e.Location; g.DrawLine(Eraser, px, py); py = px; } } Pic.Refresh(); x = e.X; y = e.Y; sx = e.X - cx; sy = e.Y - cy; } private void Pic_MouseUp(object sender, MouseEventArgs e) { paint = false; sx = x - cx; sy = y - cy; if(index==3) { g.DrawEllipse(p, cx, cy, sx, sy); } if (index == 4) { g.DrawRectangle(p, cx, cy, sx, sy); } if (index == 5) { g.DrawLine(p, cx, cy, x, y); } } private void BtnEraser_Click(object sender, EventArgs e) { index = 2; } private void BtnEllipse_Click(object sender, EventArgs e) { index = 3; } private void BtnRectangle_Click(object sender, EventArgs e) { index = 4; } private void BtnLine_Click(object sender, EventArgs e) { index = 5; } private void Pic_Paint(object sender, PaintEventArgs e) { Graphics g = e.Graphics; if (paint) { if (index == 3) { g.DrawEllipse(p, cx, cy, sx, sy); } if (index == 4) { g.DrawRectangle(p, cx, cy, sx, sy); } if (index == 5) { g.DrawLine(p, cx, cy, x, y); } } } private void BtnClear_Click(object sender, EventArgs e) { g.Clear(Color.White); Pic.Image = bm; index = 0; } private void BtnPaint_Click(object sender, EventArgs e) { index = 6; } static Point set_Point(PictureBox pb,Point pt) { float px = 1f * pb.Width / pb.Width; float py = 1f * pb.Height / pb.Height; return new Point((int)(pt.X * px), (int)(pt.Y * py)); } private void Validate(Bitmap bm,Stacksp,int x,int y,Color Old_Color,Color New_Color) { Color cx = bm.GetPixel(x, y); if(cx==Old_Color) { sp.Push(new Point(x, y)); bm.SetPixel(x, y, New_Color); } } public void Fill(Bitmap bm,int x,int y, Color New_Clr) { Color Old_Color = bm.GetPixel(x, y); Stack pixel=new Stack(); pixel.Push(new Point(x, y)); bm.SetPixel(x, y, New_Clr); if (Old_Color == New_Clr) { return; } while(pixel.Count>0) { Point pt = (Point)pixel.Pop(); if(pt.X>0 && pt.Y>0 && pt.X
@batyrkhanakzholov9640
2 жыл бұрын
Привед С лодзи
@MaxCorter
Жыл бұрын
Привет с Огайо
@codingwithlibino
10 ай бұрын
kzbin.info/www/bejne/Y4i0qGeDqsmLb8k
9:39
Capture Screenshot using c#
Coding with Libino
Рет қаралды 601
11:27
C# Winform Paint
Mr Programmer
Рет қаралды 97 М.
0:19
УНО Реверс в Амонг Ас : игра на выбывание
Фани Хани
Рет қаралды 1,3 МЛН
0:32
Этот метод используют в Японии | Метод “Shisa Kanko” | Маргулан Сейсембай #маргулансейсембай
МАРГУЛАН СЕЙСЕМБАЙ
Рет қаралды 6 МЛН
0:16
БАБУШКА ШАРИТ #shorts
Паша Осадчий
Рет қаралды 4,1 МЛН
54:58
Қайрат Әділгерей Дариға Бадықова - ҚЫЗЫҚ TIMES | Хотя бы в кино, Айсара, Келінжан | Кызык Live
Marat Oralgazin
Рет қаралды 335 М.
1:07:10
Part 119 Caching in asp net
Don'tGuess Me
Рет қаралды 4
6:40
C# Draw a Point on a Circle - Planet Orbiting
Brandon Hilde
Рет қаралды 36 М.
18:52
C# Drawing Application Tutorial: Part 1
Dokami
Рет қаралды 19 М.
25:21
Procedural Generation with Wave Function Collapse and Model Synthesis | Unity Devlog
DV Gen
Рет қаралды 203 М.
46:39
The Unity Tutorial For Complete Beginners
Game Maker's Toolkit
Рет қаралды 4 МЛН
3:51:51
3D Environment MasterClass | From CONCEPT to FINAL: Submission Review
pwnisher
Рет қаралды 1,6 МЛН
16:50
How To Create Drawing App in C# | Visual Studio 2019 | C# Starter Project
Shaun Halverson
Рет қаралды 15 М.
3:13:20
Interior Modeling 3ds Max | Beginner Friendly | DWG
VizAcademy UK
Рет қаралды 122 М.
20:45
ASMR Programming - Spinning Cube - No Talking
Servet Gulnaroglu
Рет қаралды 4,3 МЛН
23:40
C# .NET Windows Form | СОЗДАЁМ PAINT НА C#
ChannelOf TwoGentlemen
Рет қаралды 56 М.
0:19
УНО Реверс в Амонг Ас : игра на выбывание
Фани Хани
Рет қаралды 1,3 МЛН