Messenger/MSGer.tk/ChatForm.cs

40 lines
941 B
C#
Raw Normal View History

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
{
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
this.Text = Language.Translate("chat_title", this);
2014-04-25 21:55:43 +00:00
}
private void ChatForm_FormClosing(object sender, FormClosingEventArgs e)
{
//chatPanel.Close();
}
2014-04-25 21:55:43 +00:00
}
}