当前位置: 首页>>代码示例>>C#>>正文


C# StatusType.ToString方法代码示例

本文整理汇总了C#中StatusType.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# StatusType.ToString方法的具体用法?C# StatusType.ToString怎么用?C# StatusType.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在StatusType的用法示例。


在下文中一共展示了StatusType.ToString方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: StatusToMessage

        private string StatusToMessage(StatusType type)
        {
            var statusString = Helper.Translate("StatusType" + type.ToString());

            if (!string.IsNullOrEmpty(statusString))
                return statusString;

            return type.ToString();

        }
开发者ID:peterluo0822,项目名称:Chat,代码行数:10,代码来源:StatusConverter.cs

示例2: AddEventItem

 private void AddEventItem(string item, bool StopActions = false)
 {
     _ClientlessLoginLogList.Add(item);
     _status = ClientlessLoginLogAnalysis(item);
     Console.WriteLine(_status.ToString());
     if (StopActions)
         return;
     switch (_status)
     {
         case StatusType.Connecting_please_wait:
             StartLoginTimer();
             _TryConnectCount++;
             OnPropertyChanged("TryConnectCount");
             break;
         case StatusType.Sending_login_informations:
             break;
         case StatusType.Sending_secondary_passcode:
             break;
         case StatusType.Character_listing:
             break;
         case StatusType.Login_Successful:
             if (tmrLogin != null)
             {
                 tmrLogin.Dispose();
                 tmrLogin = null;
             }
             break;
         case StatusType.Disconnected_from_server:
             _DCCount++;
             OnPropertyChanged("DCCount");
             StartLoginTimer();
             break;
         case StatusType.bot_Process_Terminated:
         case StatusType.Error_Stuck_On_Login:
         case StatusType.Error_Script_Steps:
             _StatusLogList.Clear();
             _ClientlessLoginLogList.Clear();
             break;
         case StatusType.Error_HS_Is_Down:
             HSState = false;
             break;
         case StatusType.Unknown:
             break;
     }
     if (StateChanged != null)
         StateChanged(this, _status);
 }
开发者ID:EgyFalseX,项目名称:Winform,代码行数:47,代码来源:CenterBot.cs

示例3: CreateLabel

 private ToolStripLabel CreateLabel(StatusType type, string text)
 {
     ToolStripStatusLabel label = new ToolStripStatusLabel();
     label.Name = type.ToString();
     if ((int)type > 0)
     {
         label.Text = statustext[(int)type - 1] + text;
     }
     else
     {
         label.Text = text;
     }
     label.BorderSides = ToolStripStatusLabelBorderSides.All;
     label.BorderStyle = Border3DStyle.SunkenOuter;
     return label;
 }
开发者ID:san90279,项目名称:UK_OAS,代码行数:16,代码来源:InfoStatusStrip.cs

示例4: SetItem

 private void SetItem(StatusType type, string text, bool visible)
 {
     string itemname = type.ToString();
     if (visible)
     {
         if (this.Items[itemname] == null)
         {
             int index = this.Items.Count;
             for (int i = 0; i < this.Items.Count; i++)
             {
                 try
                 {
                     StatusType itemtype = (StatusType)Enum.Parse(typeof(StatusType), this.Items[i].Name);
                     if ((int)type < (int)itemtype)
                     {
                         index = i;
                         break;
                     }
                 }
                 catch
                 {
                     index = i;
                     break;
                 }
             }
             this.Items.Insert(index, CreateLabel(type, text));
         }
         this.Items[itemname].Visible = true;
     }
     else
     {
         if (this.Items[itemname] != null)
         {
             this.Items[itemname].Visible = false;
         }
     }
 }
开发者ID:san90279,项目名称:UK_OAS,代码行数:37,代码来源:InfoStatusStrip.cs

示例5: LogStatus

		//--- logging ---------------------------

		void LogStatus( StatusType status, string name, string path, string filename )
		{
			StringBuilder st = new StringBuilder( "----" );
			st[(int)status] = char.ToUpper( status.ToString()[0] );
			st.AppendFormat( " {0}:", name ?? string.Empty );
			st.Append( MatchPath.AbsoluteDirectoryPath( path ?? string.Empty ) );
			st.Append( filename ?? string.Empty );
			Log( st.ToString() );
		}
开发者ID:cccapon,项目名称:KeepBack,代码行数:11,代码来源:Backup.cs


注:本文中的StatusType.ToString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。