2014-07-12 08:53:00 +00:00
|
|
|
|
//Hangulatjelek használata
|
|
|
|
|
//#define emoticons
|
|
|
|
|
|
|
|
|
|
using Khendys.Controls;
|
|
|
|
|
using System;
|
2014-04-25 21:55:43 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Globalization;
|
2014-07-12 08:53:00 +00:00
|
|
|
|
using System.IO;
|
2014-04-25 21:55:43 +00:00
|
|
|
|
using System.Linq;
|
2014-07-12 08:53:00 +00:00
|
|
|
|
using System.Net;
|
|
|
|
|
using System.Net.Sockets;
|
2014-04-25 21:55:43 +00:00
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
2014-07-12 08:53:00 +00:00
|
|
|
|
using HdSystemLibrary.IO;
|
2014-04-25 21:55:43 +00:00
|
|
|
|
|
|
|
|
|
namespace MSGer.tk
|
|
|
|
|
{
|
2015-03-26 19:36:18 +00:00
|
|
|
|
public partial class ChatForm : ThemedForms
|
2014-04-25 21:55:43 +00:00
|
|
|
|
{
|
|
|
|
|
public ChatForm()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
//Amint létrehozom, ez a kód lefut - Nem számit, hogy megjelenik-e
|
2014-10-24 17:02:38 +00:00
|
|
|
|
|
2015-03-26 19:36:18 +00:00
|
|
|
|
this.Text = Language.Translate("chat_title", this);
|
2014-04-25 21:55:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ChatForm_FormClosing(object sender, FormClosingEventArgs e)
|
|
|
|
|
{
|
2015-03-26 19:36:18 +00:00
|
|
|
|
//chatPanel.Close();
|
2014-10-24 17:02:38 +00:00
|
|
|
|
}
|
2014-04-25 21:55:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|