fork download
  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.Windows.Forms;
  9. using System.Drawing.Drawing2D;
  10. using System.Drawing.Imaging;
  11.  
  12. namespace WindowsFormsApplication1
  13. {
  14. public partial class Form1 : Form
  15. {
  16. public Form1()
  17. {
  18. InitializeComponent();
  19. }
  20.  
  21. private void Form1_Load(object sender, EventArgs e)
  22. {
  23. Label l = new Label();
  24. l.Text = "㎟";
  25. l.Location = new Point(10, 100);
  26. this.Controls.Add(l);
  27. }
  28.  
  29. private void Form1_Paint(object sender, PaintEventArgs e)
  30. {
  31. Font f = new System.Drawing.Font("MS Pゴシック",50.0f);
  32. e.Graphics.SmoothingMode = SmoothingMode.AntiAlias;
  33. e.Graphics.DrawString("㎟", f, Brushes.Blue, 10.0f, 10.0f);
  34. }
  35. }
  36. }
  37.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty