Issue in setting the vertical alignment for the text in RichTextBox WPF
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
add a comment |
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
add a comment |
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
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
c# wpf richtextbox
edited Nov 13 '18 at 10:40
Kani Barathi
asked Nov 13 '18 at 5:21
Kani BarathiKani Barathi
64
64
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
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
add a comment |
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
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
add a comment |
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
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
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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