Messenger/Most Closed Beta/v5.0/MSGer.tk (C#)/ChatForm.cs
szatmari.norbert.peter 7a2a792dda Import to Google Code:
Most Closed Beta v1.0-v9.0
Less Closed Beta v1.0
2014-04-25 21:18:16 +00:00

33 lines
869 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace MSGer.tk
{
public partial class ChatForm : Form
{/* 2014.03.07. A partnerinformáció birtokolja a chatablakot, és nem forditva
public int ChatPartner
{
get;
set;
}*/
public ChatForm()
{
InitializeComponent();
//Amint létrehozom, ez a kód lefut - Nem számit, hogy megjelenik-e
}
private void ChatForm_Load(object sender, EventArgs e)
{
//MessageBox.Show(ChatPartner + "");
//ChatPartner = 2;
//MessageBox.Show(ChatPartner + "");
}
}
}