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


C# TextBoxBase.AppendText方法代码示例

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


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

示例1: AppendText

 public static void AppendText(TextBoxBase control, string text)
 {
     if (control.InvokeRequired)
         control.Invoke(new AppendTextDelegate(AppendText), control, text);
     else
         control.AppendText(text);
 }
开发者ID:greeduomacro,项目名称:phoenix,代码行数:7,代码来源:Safe.cs

示例2: LoadText

		public static void LoadText (TextBoxBase sourceRichEdit, string fileName, bool excludeEmptyLines)
		{
			if (sourceRichEdit == null)	throw new NolmeArgumentNullException ();

			sourceRichEdit.Clear ();
			
			//Win32RichEditUtility.BeginUpdate (sourceRichEdit);
			if (File.Exists (fileName))
			{
				string [] aszAllLines = FileUtility.ReadAllLines (fileName, excludeEmptyLines,true);
				string szBuffer = String.Concat (aszAllLines);
				sourceRichEdit.AppendText (szBuffer);
			}
			//Win32RichEditUtility.EndUpdate (sourceRichEdit);
		}
开发者ID:tdhieu,项目名称:openvss,代码行数:15,代码来源:Win32RichEditUtility.cs

示例3: SetAppendText

 /// <summary>
 /// appends text for text boxes
 /// </summary>
 /// <param name="obj"></param>
 /// <param name="text"></param>
 private void SetAppendText(TextBoxBase obj, string text)
 {
     if (obj.InvokeRequired)
     {
         SetAppendTextCallback tcb = new SetAppendTextCallback(SetAppendText);
         this.Invoke(tcb, new Object[] { obj, text });
     }
     else
     {
         obj.AppendText(text);
     }
 }
开发者ID:CWentz,项目名称:LMessenger,代码行数:17,代码来源:LMServer.cs

示例4: AppendTextInternalAsync

 private void AppendTextInternalAsync(TextBoxBase textBox, string Text)
 {
     textBox.AppendText(Text);
 }
开发者ID:lisiynos,项目名称:pascalabcnet,代码行数:4,代码来源:WindowOperations.cs

示例5: SetMultiLine

        /// <summary>
        /// sets the given values as the holders textboxs text and checks for line breaks to properly set new lines
        /// </summary>
        /// <param name="values">string to set with new lines in it</param>
        /// <param name="holder">textbox whose text to set</param>
        private void SetMultiLine(string values, TextBoxBase holder)
        {
            if (values == null)
                values = string.Empty;

            string[] valuesSplit = Regex.Split(values, "\r\n|\r|\n");
            int counter = 0;
            foreach (string value in valuesSplit)
            {
                holder.AppendText(value);
                if (++counter < valuesSplit.Length)
                    holder.AppendText(Environment.NewLine);
            }
        }
开发者ID:HefloRicardo,项目名称:NuGetDeploy,代码行数:19,代码来源:DeploymentPrepare.cs

示例6: updateTextbox

 public void updateTextbox(string msg, TextBoxBase uiControl)
 {
     if (this.InvokeRequired)
         Invoke(new TextboxCallback(updateTextbox), msg, uiControl);
     else
     {
         string message = DateTime.Now.ToString("[yyyyMMdd hh:mm:ss] ") + msg + Environment.NewLine;
         uiControl.AppendText(message);
     }
 }
开发者ID:ferrywlto,项目名称:teamspeak,代码行数:10,代码来源:ClientFOrm.cs


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