Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 628547
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T19:38:55+00:00 2026-05-13T19:38:55+00:00

Is there any more elegant way to do the following? Basically I need an

  • 0

Is there any more elegant way to do the following?

Basically I need an easy way to programatically build a WrapPanel (or other FrameworkElement) that:

  • wraps correctly
  • allows some words to have bold text
  • allows some words to have italic text
  • allows other formatting, e.g. color, background
  • ideal would be some method that converts e.g. “This is <b>bold</b> and this is <i>italic</i> text.” into an appropriate FrameworkElement so I can e.g. add it to a StackPanel and display it.

Code:

using System.Windows;
using System.Windows.Controls;

namespace TestAddTextBlock2343
{
    public partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();

            WrapPanel wp = new WrapPanel();

            wp.AddTextBlock("This is a sentence with ");

            {
                TextBlock tb = wp.AddTextBlockAndReturn("bold text");
                tb.FontWeight = FontWeights.Bold;
            }

            wp.AddTextBlock(" and ");

            {
                TextBlock tb = wp.AddTextBlockAndReturn("italic text");
                tb.FontStyle = FontStyles.Italic;
            }

            wp.AddTextBlock(" in it.");
        }
    }

    public static class XamlHelpers
    {
        public static TextBlock AddTextBlockAndReturn(this WrapPanel wp, string text)
        {
            TextBlock tb = new TextBlock();
            tb.Text = text;
            wp.Children.Add(tb);
            return tb;
        }

        public static void AddTextBlock(this WrapPanel wp, string text)
        {
            TextBlock tb = wp.AddTextBlockAndReturn(text);
        }
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T19:38:55+00:00Added an answer on May 13, 2026 at 7:38 pm

    Edit: I discovered in a different answer that the TextBlock also has an Inlines collection to which one can add Runs. Anvaka’s answer ingeniously uses an attached property as a sort of converter.


    What I think will suit your situation is a FlowDocumentScrollViewer and a FlowDocument. I describe manual creation of one through an IValueConverter a little bit here.

    You’ll likely use similar helper functions as you’ve shown in your example, but the FlowDocument is already much like HTML and will handle wrapping effortlessly.

    You add Paragraphs to the FlowDocument, you add Runs to the Paragraph, and each Run derives from TextElement so it has a lot of the same properties that TextBlocks do.

    FlowDocument doc = new FlowDocument();
    Paragraph par = new Paragraph();
    doc.Blocks.Add( par );
    
    Run r;
    r = new Run( "This is " );
    par.Inlines.Add( r );
    
    r = new Run( "bold" );
    r.FontWeight = FontWeights.Bold;
    par.Inlines.Add( r );
    
    r = new Run( " and this is " );
    par.Inlines.Add( r );
    
    r = new Run( "italic" );
    r.FontStyle = FontStyles.Italic;
    par.Inlines.Add( r );
    
    r = new Run( " text." );
    par.Inlines.Add( r );
    

    Also, if the formatting substrings are going to remain restricted to bold/italic tags or some other extremely simple markup, use of Regex.Split() might be the easiest way to determine the separate Runs from a single string. It allows you to split a string into multiple strings but keep your “delimiters”.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any other way to write javascript:false that is more pleasant? I'm building
Are there any more generic tools that can compile or basically merge multiple PHP
Is there any way to connect more then one PPC to ActiveSync in one
Is there any way to dequeue two or more items in list comprehension. I.e.
Is there any possible way to apply more than CSS to a control through
Is there any smart way to write a list comprehension over more than one
I know and use eric meyer CSS reset, but is there any more things
Are there any scenarios where more than one Box2D worlds are needed in one
Are there any cases in which anything more than a linear speed increase comes
Is there any time in which a reference type is more efficient than a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.