Advertisement
Guest User

Mi código

a guest
Feb 23rd, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.79 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using System.Drawing.Text;
  11.  
  12. namespace prueba {
  13.    public partial class Form1 : Form {
  14.       public Form1() {
  15.          InitializeComponent();
  16.       }
  17.  
  18.         private void label1_Paint(object sender, PaintEventArgs e) {
  19.          e.Graphics.FillRectangle(new SolidBrush(label1.BackColor), new RectangleF(0, 0, label1.Width, label1.Height));
  20.          e.Graphics.TextRenderingHint = TextRenderingHint.AntiAlias;
  21.          e.Graphics.Transform.
  22.          e.Graphics.DrawString(label1.Text, label1.Font, new SolidBrush(label1.ForeColor), new PointF(0,0));
  23.          
  24.       }
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement