KZ
bin
Негізгі бет
Қазірдің өзінде танымал
Тікелей эфир
Ұнаған бейнелер
Қайтадан қараңыз
Жазылымдар
Кіру
Тіркелу
Ең жақсы KZbin
Фильм және анимация
Автокөліктер мен көлік құралдары
Музыка
Үй жануарлары мен аңдар
Спорт
Ойындар
Комедия
Ойын-сауық
Тәжірибелік нұсқаулар және стиль
Ғылым және технология
Capture Screenshot using c#
9:39
C# How to Use Paint and the C# Graphics Class to Draw Lines
37:36
Real Man relocate to Remote Controlled Car 👨🏻➡️🚙🕹️ #builderc
00:24
Mia Boyka х Карен Акопян | ЧТО БЫЛО ДАЛЬШЕ?
1:21:14
PRANK😂 rate Mark’s kick 1-10 🤕
00:14
У вас там какие таланты ?😂
00:19
Create Paint Using C#, Graphics in C#
Рет қаралды 13,486
Facebook
Twitter
Жүктеу
1
Жазылу 1 М.
Coding with Libino
Күн бұрын
Пікірлер: 28
@RexmondSavadera
6 ай бұрын
Thank you Very much your tutorial is very helpful and useful
@codingwithlibino
3 ай бұрын
Thank you
@jesusaurelioperezcota3706
7 ай бұрын
Increible video me ayudó muchisimo, Muchas graciaas bendiciones!! :D
@codingwithlibino
3 ай бұрын
Thank you
@creatingcreations8647
3 жыл бұрын
Super bro please also make more shapes and brushes
@codingwithlibino
3 жыл бұрын
Ok sure bro
@creatingcreations8647
3 жыл бұрын
@@codingwithlibino thanks bro 😊
@codingwithlibino
8 ай бұрын
kzbin.info/www/bejne/Y4i0qGeDqsmLb8k
@gustavooliveira2662
Жыл бұрын
Certified by gustavo
@codingwithlibino
Жыл бұрын
Thank you
@codingwithlibino
8 ай бұрын
kzbin.info/www/bejne/Y4i0qGeDqsmLb8k
@creatingcreations8647
3 жыл бұрын
Bro waiting for new tutorials😯
@codingwithlibino
8 ай бұрын
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
@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
8 ай бұрын
kzbin.info/www/bejne/Y4i0qGeDqsmLb8k
@batyrkhanakzholov9640
2 жыл бұрын
Привед С лодзи
@MaxCorter
Жыл бұрын
Привет с Огайо
@codingwithlibino
8 ай бұрын
kzbin.info/www/bejne/Y4i0qGeDqsmLb8k
9:39
Capture Screenshot using c#
Coding with Libino
Рет қаралды 582
37:36
C# How to Use Paint and the C# Graphics Class to Draw Lines
Chris Merritt
Рет қаралды 198 М.
00:24
Real Man relocate to Remote Controlled Car 👨🏻➡️🚙🕹️ #builderc
Construction Site
Рет қаралды 23 МЛН
1:21:14
Mia Boyka х Карен Акопян | ЧТО БЫЛО ДАЛЬШЕ?
Что было дальше?
Рет қаралды 12 МЛН
00:14
PRANK😂 rate Mark’s kick 1-10 🤕
Diana Belitskay
Рет қаралды 8 МЛН
00:19
У вас там какие таланты ?😂
Карина Хафизова
Рет қаралды 23 МЛН
19:54
C# how to create a simple graphic editor - part 1
Dawisko1
Рет қаралды 96 М.
18:52
C# Drawing Application Tutorial: Part 1
Dokami
Рет қаралды 18 М.
16:50
How To Create Drawing App in C# | Visual Studio 2019 | C# Starter Project
Shaun Halverson
Рет қаралды 14 М.
29:17
Paint Clone in Python
NeuralNine
Рет қаралды 15 М.
23:40
C# .NET Windows Form | СОЗДАЁМ PAINT НА C#
ChannelOf TwoGentlemen
Рет қаралды 55 М.
10:57
.NET and C# are in trouble. Here is what I'd do.
Ed Andersen
Рет қаралды 96 М.
11:27
C# Winform Paint
Mr Programmer
Рет қаралды 96 М.
14:36
«Осень». Самая большая загадка Windows XP
Девять десятых
Рет қаралды 1,1 МЛН
20:45
ASMR Programming - Spinning Cube - No Talking
Servet Gulnaroglu
Рет қаралды 4,1 МЛН
29:42
Why 4d geometry makes me sad
3Blue1Brown
Рет қаралды 664 М.
00:24
Real Man relocate to Remote Controlled Car 👨🏻➡️🚙🕹️ #builderc
Construction Site
Рет қаралды 23 МЛН