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


C# TextBoxBase.Select方法代码示例

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


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

示例1: Find

        internal static void Find(TextBoxBase textBox, string findString, bool caseSensitive, bool upwards)
        {
            var comparison = caseSensitive
                           ? StringComparison.CurrentCulture
                           : StringComparison.CurrentCultureIgnoreCase;

            var text = textBox.Text;
            if (text.IndexOf(findString, comparison) == -1)
            {
                ShowFormattedMessageBox("Cannot find \"{0}\".", findString);
                return;
            }

            var foundIndex = Find(text, textBox.SelectionStart, textBox.SelectionLength, findString, comparison, upwards);
            if (foundIndex == -1)
            {
                ShowFormattedMessageBox("No further occurences of \"{0}\" have been found.", findString);
                return;
            }

            textBox.Select(foundIndex, findString.Length);
            textBox.ScrollToCaret();
        }
开发者ID:Letractively,项目名称:schnell,代码行数:23,代码来源:FindForm.cs

示例2: scrollToEnd

 public static void scrollToEnd(TextBoxBase txb)
 {
     txb.Focus();
     txb.Select(txb.TextLength, 0);
 }
开发者ID:victorfeitosa,项目名称:HCCGUI,代码行数:5,代码来源:Utils.cs

示例3: UnselectText

 /// <summary>
 /// Unselect text in textbox
 /// </summary>
 /// <param name="control">the text box control</param>
 public static void UnselectText(TextBoxBase control)
 {
     if (control.InvokeRequired)
     {
         control.Invoke(new unselectText(UnselectText), control);
     }
     else
     {
         control.SelectionLength = 0;
         if (!String.IsNullOrEmpty(control.Text))
         {
             control.Select(control.Text.Length, 0);
         }
     }
 }
开发者ID:rolandKulcsar,项目名称:acat,代码行数:19,代码来源:Windows.cs


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