using Api.Framework.Enums; using Api.Framework.SDK; using System.Windows.Forms; namespace FLSystem.Forms { public partial class private_pid_manage : UserControl { public class view_private_pid { public long id { get; set; } /// /// 用户名 /// public string username { get; set; } /// /// 用户昵称 /// public string usernick { get; set; } /// /// 类型 /// public ChatType robot_type { get; set; } /// /// ID /// public string pid_id { get; set; } public string pid_name { get; set; } public string cps_name { get; set; } public CpsType cps_type { get; set; } } public private_pid_manage() { InitializeComponent(); } private void gridView1_CustomDrawRowIndicator(object sender, DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventArgs e) { if (e.Info.IsRowIndicator && e.RowHandle >= 0) e.Info.DisplayText = (e.RowHandle + 1).ToString(); } } }