⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 textmsg.cs

📁 kuiMsg是一款用.net C# 开发的即时消息开源软件,适合.net即时消息软件开发者用。 主要功能: 支持文件传输(p2p); 支持GIF动画表情( 彻底消除闪屏 :) );
💻 CS
字号:
using System;

namespace IMLibrary
{
	/// <summary>
	/// ClassTextMsg 的摘要说明。
	/// </summary>
	[Serializable]
	public class  TextMsg
	{
		public string fN;//font name
		public int  fC;//font color
        public bool fB;//font is bold
		public string iI;//image info
		public string mC;//message content

        public TextMsg()
		{
			//
			// TODO: 在此处添加构造函数逻辑
			//
		}

        public TextMsg(string fontName,int fontColor,bool fontIsBold ,string imageInfo,string messageContent)
        {
            this.fN = fontName;
            this.fC = fontColor;
            this.fB = fontIsBold;
            this.iI = imageInfo;
            this.mC = messageContent;
        }
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -