Advertisement
VladikOtez

Untitled

Sep 27th, 2016
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.95 KB | None | 0 0
  1. namespace semizvetic
  2. {
  3.     public partial class Form1 : Form
  4.     {
  5.         public Form1()
  6.         {
  7.             InitializeComponent();
  8.         }
  9.         public void Mix_Click(object sender, EventArgs e)
  10.         {
  11.  
  12.         }
  13.         public void CreateLoc( )
  14.    
  15.         {
  16.  
  17.          
  18.             Random rnd = new Random();
  19.             rnd.Next(1000);
  20.  
  21.                
  22.             foreach ( var LBL in _labels)
  23.             {
  24.                
  25.             }
  26.            
  27.  
  28.         }
  29.         public class LBL : Label
  30.         {
  31.             public int X { get; set; }
  32.             public int Y { get; set; }
  33.  
  34.            
  35.         }
  36.         public List<LBL> _labels = new List<LBL>();
  37.         public class Coordinate
  38.         {
  39.             int m = Label.Width;
  40.             int n = Label.Height;
  41.          
  42.              
  43.        
  44.            
  45.  
  46.         private void Form1_Load(object sender, EventArgs e)
  47.         {
  48.  
  49.         }
  50.     }
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement