I would like to be able to remove the white spaces between various inline elements of a FlowDocument. Below is a very specific example just to make the problem clear. The desired output is "Hello World?" but what happens is "Hello World ?". In this case "?" is a clickable button.
I have searched for a while without success. I tried all forms of pad/margin adjustment, but they can only increase the spacing. I am beginning to believe the space is inherent to FlowDocument element boundaries. This seems like a series limitation.
<RichTextBox>
<FlowDocument>
<Paragraph Margin="0">
<Run>
Hello World
</Run>
<InlineUIContainer>
<Button Click="ButtonClick">?</Button>
</InlineUIContainer>
</Paragraph>
</FlowDocument>
</RichTextBox>
You could add negative margins to the button to make it fit closer: