/// <summary>

        /// 将发送的信息写入日志文件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
 
        //FrmClient(string userName, NetworkStream nws, string svrskt)
       static public string uname;
        private static string c_strLogPath = "D:\\"+ uname +".txt";
        //private static string c_strLogPath = "D:\\logSend.txt";
        private static void Log(string strMsg)
        {
            try{
            
                FileInfo obj = new FileInfo(c_strLogPath);
                if (!File.Exists(c_strLogPath))
                {
                    File.Create(c_strLogPath);
 
                }
                FileStream fs = new FileStream(c_strLogPath, FileMode.Append);
 
                StreamWriter sw = new StreamWriter(fs);
 
 
                sw.WriteLine(strMsg);
 
                sw.Flush();
                sw.Close();
                fs.Close();
            }
            catch (Exception ex)
            {
                ex.Message.ToString();
                
            }
        }
 
        private string ReadFromLog()
        {
            try
            {
                if(!File .Exists (c_strLogPath))
                {
                    XtraMessageBox.Show ("文件不存在!","提示");
                    return null ;
                }
                else{
                FileStream fs = new FileStream(c_strLogPath, FileMode.Open);
                StreamReader sr = new StreamReader(fs);
                if (sr.ReadToEnd() == "")
                {
                    XtraMessageBox.Show("文件中没有可读取的内容", "提示");
                    return null;
                }
                else
                {
                    string log = sr.ReadToEnd();
                    sr.Close();
                    return log;
                }
                }
            }
            catch (Exception ex)
            {
                return null;
            }
        }