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

📄 statuschangedargs.cs

📁 Gibphone is CSharp Program, it can tell you how to design p2p chat.
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace GPCore.Args
{
    /// <summary>
    /// The Eventargs used for a Status Update
    /// </summary>
    public class StatusChangedArgs : EventArgs
    {
        /// <summary>
        /// The new status of the contact
        /// </summary>
        public string Status;
        /// <summary>
        /// The username of the Account that changed its status
        /// </summary>
        public string Username;
        /// <summary>
        /// Creates a new StatusChangedArgs
        /// </summary>
        /// <param name="Status">The new status of a contact</param>
        /// <param name="Username">The Username of the contact</param>
        public StatusChangedArgs(string Status, string Username)
        {
            this.Status = Status;
            this.Username = Username;
        }
    }
}

⌨️ 快捷键说明

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