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


C# TextRange.Trim方法代码示例

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


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

示例1: CreateDrawingNodeByUsingDialog

        Node CreateDrawingNodeByUsingDialog() {
            RichTextBox richBox;
            var window = CreateNodeDialog(out richBox);
            window.ShowDialog();

            var r = new Random();
            var i = r.Next();

            var createdNode = new Node(i.ToString());
            var s = new TextRange(richBox.Document.ContentStart, richBox.Document.ContentEnd).Text;
            createdNode.LabelText = s.Trim('\r', '\n', ' ', '\t');
            return createdNode;
        }
开发者ID:WenzCao,项目名称:automatic-graph-layout,代码行数:13,代码来源:App.cs

示例2: GetCommand

 private string GetCommand()
 {
     var command = new TextRange(
         richTextBox1.CaretPosition.GetLineStartPosition(0)
         .GetPositionAtOffset(prompt.Length + 1, LogicalDirection.Forward) ??
         richTextBox1.CaretPosition.GetLineStartPosition(0),
         richTextBox1.CaretPosition.GetLineStartPosition(1) ?? this.richTextBox1.CaretPosition.DocumentEnd).Text;
     command = command.Trim();
     return command;
 }
开发者ID:Frrank1,项目名称:Git-Source-Control-Provider,代码行数:10,代码来源:GitConsole.xaml.cs

示例3: button1_OnClick

        private void button1_OnClick(object sender, RoutedEventArgs e)
        {
            var cat = new Categorys();

            byte[] photo = null;

            var image = ImageEdit1.Source as BitmapImage;
            if (image != null)
            {
                var bi = image;
                var stream = bi.StreamSource as FileStream;

                if (stream != null)
                {
                    String photoPath = stream.Name;
                    photo = Validator.ConvertImageToByteArray(photoPath);
                }
            }

            var Categoryname = CategoryNameCbx.Text ?? "";
            string subCategoryname = SubCategoryNameTxt.Text;
            if (String.IsNullOrEmpty(Categoryname))
            {
                DXMessageBox.Show(this, "Erreur dans le Nom du catégorie (ne doit pas etre vide");
                return;
            }
            if (String.IsNullOrEmpty(subCategoryname.Trim()))
            {
                DXMessageBox.Show(this, "Erreur dans le Nom du sous catégorie (ne doit pas etre vide");
                return;
            }

            if (_CategorysClient.IsSubCategoryExist(subCategoryname.Trim(), Categoryname))
            {
                DXMessageBox.Show(this, "sous catégorie existe déjà");
                return;
            }

            String description = new TextRange(RichTextBox1.Document.ContentStart, RichTextBox1.Document.ContentEnd).Text;

            String result = _CategorysClient.AddSubCategory(Categoryname.Trim(), subCategoryname.Trim(), description.Trim(), photo);

            DXMessageBox.Show(this,result);
        }
开发者ID:benchaa05,项目名称:itcastle-solutions,代码行数:44,代码来源:AddCategorieView.xaml.cs


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