Exemplo n.º 1
0
 public Client(string id, string userArray)
 {
     InitializeComponent();
     this.id        = id;
     this.userArray = userArray;
     quary          = new Quary();
 }
Exemplo n.º 2
0
        static void Main()
        {
            Quary quary = new Quary();

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new LoginForm());
        }
Exemplo n.º 3
0
        public ChatForm(string id, string userArray, bool Flag)
        {
            InitializeComponent();
            this.id        = id;        //내 아이디
            this.userArray = userArray; //채팅하는 사람들의 아이디
            this.flag_     = Flag;
            UserArray      = (userArray.Split(',')).ToList <string>();
            quary          = new Quary();
            Font tFont = new Font(FontBox.externalFont.Families[3], 11);
            Font bFont = new Font(FontBox.externalFont.Families[3], 11);

            textBox.Font        = tFont;
            ChatBox.Font        = tFont;
            Sharing_button.Font = bFont;
        }
Exemplo n.º 4
0
 private void Calender_Load(object sender, EventArgs e)
 {
     quary = new Quary();
 }