Issue in setting the vertical alignment for the text in RichTextBox WPF










0















In RichTextBox WPF, there is an issue while setting the vertical alignment for the content. I have tried setting Vertical Content alignment and TextAlignment for the document, but still it does not work. The vertical alignment is still aligned at the top position and not at the center position.



Please find the code example for reference of setting alignment,



 FlowDocument mcFlowDoc = new FlowDocument();
// Create a paragraph with text
Paragraph para = new Paragraph();
para.Inlines.Add(new Run("Flow Documentn"));
para.Inlines.Add(new Bold(new Run("Content is not alignedn.")));
para.Inlines.Add(new Run("Vertical content alignment does not work in RichTextBoxn"));

// Add the paragraph to blocks of paragraph
mcFlowDoc.Blocks.Add(para);

// Set contents
richtextbox.Document = mcFlowDoc;

//Set Alignment,


richtextbox.VerticalContentAlignment = VerticalAlignment.Center;
richtextbox.HorizontalContentAlignment = HorizontalAlignment.Center;
richtextboxt.Document.TextAlignment = TextAlignment.Center;


Anyone interested, can you please suggest idea on this?










share|improve this question




























    0















    In RichTextBox WPF, there is an issue while setting the vertical alignment for the content. I have tried setting Vertical Content alignment and TextAlignment for the document, but still it does not work. The vertical alignment is still aligned at the top position and not at the center position.



    Please find the code example for reference of setting alignment,



     FlowDocument mcFlowDoc = new FlowDocument();
    // Create a paragraph with text
    Paragraph para = new Paragraph();
    para.Inlines.Add(new Run("Flow Documentn"));
    para.Inlines.Add(new Bold(new Run("Content is not alignedn.")));
    para.Inlines.Add(new Run("Vertical content alignment does not work in RichTextBoxn"));

    // Add the paragraph to blocks of paragraph
    mcFlowDoc.Blocks.Add(para);

    // Set contents
    richtextbox.Document = mcFlowDoc;

    //Set Alignment,


    richtextbox.VerticalContentAlignment = VerticalAlignment.Center;
    richtextbox.HorizontalContentAlignment = HorizontalAlignment.Center;
    richtextboxt.Document.TextAlignment = TextAlignment.Center;


    Anyone interested, can you please suggest idea on this?










    share|improve this question


























      0












      0








      0








      In RichTextBox WPF, there is an issue while setting the vertical alignment for the content. I have tried setting Vertical Content alignment and TextAlignment for the document, but still it does not work. The vertical alignment is still aligned at the top position and not at the center position.



      Please find the code example for reference of setting alignment,



       FlowDocument mcFlowDoc = new FlowDocument();
      // Create a paragraph with text
      Paragraph para = new Paragraph();
      para.Inlines.Add(new Run("Flow Documentn"));
      para.Inlines.Add(new Bold(new Run("Content is not alignedn.")));
      para.Inlines.Add(new Run("Vertical content alignment does not work in RichTextBoxn"));

      // Add the paragraph to blocks of paragraph
      mcFlowDoc.Blocks.Add(para);

      // Set contents
      richtextbox.Document = mcFlowDoc;

      //Set Alignment,


      richtextbox.VerticalContentAlignment = VerticalAlignment.Center;
      richtextbox.HorizontalContentAlignment = HorizontalAlignment.Center;
      richtextboxt.Document.TextAlignment = TextAlignment.Center;


      Anyone interested, can you please suggest idea on this?










      share|improve this question
















      In RichTextBox WPF, there is an issue while setting the vertical alignment for the content. I have tried setting Vertical Content alignment and TextAlignment for the document, but still it does not work. The vertical alignment is still aligned at the top position and not at the center position.



      Please find the code example for reference of setting alignment,



       FlowDocument mcFlowDoc = new FlowDocument();
      // Create a paragraph with text
      Paragraph para = new Paragraph();
      para.Inlines.Add(new Run("Flow Documentn"));
      para.Inlines.Add(new Bold(new Run("Content is not alignedn.")));
      para.Inlines.Add(new Run("Vertical content alignment does not work in RichTextBoxn"));

      // Add the paragraph to blocks of paragraph
      mcFlowDoc.Blocks.Add(para);

      // Set contents
      richtextbox.Document = mcFlowDoc;

      //Set Alignment,


      richtextbox.VerticalContentAlignment = VerticalAlignment.Center;
      richtextbox.HorizontalContentAlignment = HorizontalAlignment.Center;
      richtextboxt.Document.TextAlignment = TextAlignment.Center;


      Anyone interested, can you please suggest idea on this?







      c# wpf richtextbox






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 13 '18 at 10:40







      Kani Barathi

















      asked Nov 13 '18 at 5:21









      Kani BarathiKani Barathi

      64




      64






















          1 Answer
          1






          active

          oldest

          votes


















          0














          You can try to set alignment for FlowDocument instead of RichTextBox.
          Take a look at the code below.



           FlowDocument mcFlowDoc = new FlowDocument();

          // Set alignment
          mcFlowDoc.TextAlignment = TextAlignment.Center;

          // Create a paragraph with text
          Paragraph para = new Paragraph();
          para.Inlines.Add(new Run("Flow Documentn"));
          para.Inlines.Add(new Bold(new Run("Content is not alignedn.")));
          para.Inlines.Add(new Run("Vertical content alignment does not work in RichTextBoxn"));

          // Add the paragraph to blocks of paragraph
          mcFlowDoc.Blocks.Add(para);

          // Set contents
          richTextBox.Document = mcFlowDoc;


          You can also set Padding property on RichTextBox control as Kevin Pan mentioned here






          share|improve this answer

























          • I have already tried setting the alignment for FlowDocument, but still it always shows on TOP.

            – Kani Barathi
            Nov 13 '18 at 10:42











          • That is not possible. The only way is to set padding on top of RichTextBox. Your problem already has been rised Here

            – Wojtman
            Nov 13 '18 at 11:08











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274303%2fissue-in-setting-the-vertical-alignment-for-the-text-in-richtextbox-wpf%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          You can try to set alignment for FlowDocument instead of RichTextBox.
          Take a look at the code below.



           FlowDocument mcFlowDoc = new FlowDocument();

          // Set alignment
          mcFlowDoc.TextAlignment = TextAlignment.Center;

          // Create a paragraph with text
          Paragraph para = new Paragraph();
          para.Inlines.Add(new Run("Flow Documentn"));
          para.Inlines.Add(new Bold(new Run("Content is not alignedn.")));
          para.Inlines.Add(new Run("Vertical content alignment does not work in RichTextBoxn"));

          // Add the paragraph to blocks of paragraph
          mcFlowDoc.Blocks.Add(para);

          // Set contents
          richTextBox.Document = mcFlowDoc;


          You can also set Padding property on RichTextBox control as Kevin Pan mentioned here






          share|improve this answer

























          • I have already tried setting the alignment for FlowDocument, but still it always shows on TOP.

            – Kani Barathi
            Nov 13 '18 at 10:42











          • That is not possible. The only way is to set padding on top of RichTextBox. Your problem already has been rised Here

            – Wojtman
            Nov 13 '18 at 11:08
















          0














          You can try to set alignment for FlowDocument instead of RichTextBox.
          Take a look at the code below.



           FlowDocument mcFlowDoc = new FlowDocument();

          // Set alignment
          mcFlowDoc.TextAlignment = TextAlignment.Center;

          // Create a paragraph with text
          Paragraph para = new Paragraph();
          para.Inlines.Add(new Run("Flow Documentn"));
          para.Inlines.Add(new Bold(new Run("Content is not alignedn.")));
          para.Inlines.Add(new Run("Vertical content alignment does not work in RichTextBoxn"));

          // Add the paragraph to blocks of paragraph
          mcFlowDoc.Blocks.Add(para);

          // Set contents
          richTextBox.Document = mcFlowDoc;


          You can also set Padding property on RichTextBox control as Kevin Pan mentioned here






          share|improve this answer

























          • I have already tried setting the alignment for FlowDocument, but still it always shows on TOP.

            – Kani Barathi
            Nov 13 '18 at 10:42











          • That is not possible. The only way is to set padding on top of RichTextBox. Your problem already has been rised Here

            – Wojtman
            Nov 13 '18 at 11:08














          0












          0








          0







          You can try to set alignment for FlowDocument instead of RichTextBox.
          Take a look at the code below.



           FlowDocument mcFlowDoc = new FlowDocument();

          // Set alignment
          mcFlowDoc.TextAlignment = TextAlignment.Center;

          // Create a paragraph with text
          Paragraph para = new Paragraph();
          para.Inlines.Add(new Run("Flow Documentn"));
          para.Inlines.Add(new Bold(new Run("Content is not alignedn.")));
          para.Inlines.Add(new Run("Vertical content alignment does not work in RichTextBoxn"));

          // Add the paragraph to blocks of paragraph
          mcFlowDoc.Blocks.Add(para);

          // Set contents
          richTextBox.Document = mcFlowDoc;


          You can also set Padding property on RichTextBox control as Kevin Pan mentioned here






          share|improve this answer















          You can try to set alignment for FlowDocument instead of RichTextBox.
          Take a look at the code below.



           FlowDocument mcFlowDoc = new FlowDocument();

          // Set alignment
          mcFlowDoc.TextAlignment = TextAlignment.Center;

          // Create a paragraph with text
          Paragraph para = new Paragraph();
          para.Inlines.Add(new Run("Flow Documentn"));
          para.Inlines.Add(new Bold(new Run("Content is not alignedn.")));
          para.Inlines.Add(new Run("Vertical content alignment does not work in RichTextBoxn"));

          // Add the paragraph to blocks of paragraph
          mcFlowDoc.Blocks.Add(para);

          // Set contents
          richTextBox.Document = mcFlowDoc;


          You can also set Padding property on RichTextBox control as Kevin Pan mentioned here







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 13 '18 at 7:55

























          answered Nov 13 '18 at 7:41









          WojtmanWojtman

          768




          768












          • I have already tried setting the alignment for FlowDocument, but still it always shows on TOP.

            – Kani Barathi
            Nov 13 '18 at 10:42











          • That is not possible. The only way is to set padding on top of RichTextBox. Your problem already has been rised Here

            – Wojtman
            Nov 13 '18 at 11:08


















          • I have already tried setting the alignment for FlowDocument, but still it always shows on TOP.

            – Kani Barathi
            Nov 13 '18 at 10:42











          • That is not possible. The only way is to set padding on top of RichTextBox. Your problem already has been rised Here

            – Wojtman
            Nov 13 '18 at 11:08

















          I have already tried setting the alignment for FlowDocument, but still it always shows on TOP.

          – Kani Barathi
          Nov 13 '18 at 10:42





          I have already tried setting the alignment for FlowDocument, but still it always shows on TOP.

          – Kani Barathi
          Nov 13 '18 at 10:42













          That is not possible. The only way is to set padding on top of RichTextBox. Your problem already has been rised Here

          – Wojtman
          Nov 13 '18 at 11:08






          That is not possible. The only way is to set padding on top of RichTextBox. Your problem already has been rised Here

          – Wojtman
          Nov 13 '18 at 11:08




















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274303%2fissue-in-setting-the-vertical-alignment-for-the-text-in-richtextbox-wpf%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

          Edmonton

          Crossroads (UK TV series)