📄 messageopenconversation.cs
字号:
using System.Text;
namespace Org.InteliIM.Activities.Conversations
{
/// <summary>
/// 请求交谈消息
/// </summary>
public sealed class MessageOpenConversation: InstantMessage
{
/// <summary>
/// 构造函数
/// </summary>
public MessageOpenConversation()
{
}
private Conversation conversation;
/// <summary>
/// 谈话
/// </summary>
public Conversation Conversation
{
get
{
return this.conversation;
}
set
{
this.conversation = value;
}
}
public override string ToString()
{
StringBuilder sb = new StringBuilder();
sb.Append("打开谈话 [发送者:" + this.From);
sb.Append(",接收者:" + this.To + "]");
return sb.ToString();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -