statuschangedargs.cs

来自「Gibphone is CSharp Program, it can tell 」· CS 代码 · 共 32 行

CS
32
字号
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 + =
减小字号Ctrl + -
显示快捷键?