修改主界面显示

This commit is contained in:
dathlin
2017-07-17 22:15:05 +08:00
parent f6ded5b1ef
commit f44c0dc35b
3 changed files with 18 additions and 4 deletions

View File

@@ -361,6 +361,14 @@ namespace 软件系统客户端Wpf
Close();
}
private void Border_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
//点击了文件查看
MessageBox.Show("点击了文件");
}
#endregion
@@ -436,7 +444,7 @@ namespace 软件系统客户端Wpf
if (IsWindowShow) Dispatcher.Invoke(new Action(() =>
{
TextBlock_ServerTime.Text = UserClient.DateTimeServer.ToString("yyyy-MM-dd HH:mm:ss");
//label_file_count.Text = json["FileCount"].ToObject<int>().ToString();
TextBlock_FileCount.Text = json["FileCount"].ToObject<int>().ToString();
UIControls_Chat.AddChatsHistory(sb.ToString());
}));
}
@@ -444,7 +452,7 @@ namespace 软件系统客户端Wpf
{
if (IsWindowShow) Dispatcher.Invoke(new Action(() =>
{
//label_file_count.Text = data;
TextBlock_FileCount.Text = data;
}));
}
else if (customer == CommonHeadCode.MultiNetHeadCode.)
@@ -733,9 +741,9 @@ namespace 软件系统客户端Wpf
private void Button_BackMain_Click(object sender, RoutedEventArgs e)
{
//点击了主页
SetShowRenderControl(UIControl_Home);
}
}
}