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 6806577
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T19:43:41+00:00 2026-05-26T19:43:41+00:00

I have a richtextbox and inside I have a listbox. I would like the

  • 0

I have a richtextbox and inside I have a listbox. I would like the listbox to be positioned just underneath the caret and to move as the caret moves.

How can I do this?

Should I manipulate the first two values of listBox.Margin and how?
Thank you!

  • 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-26T19:43:41+00:00Added an answer on May 26, 2026 at 7:43 pm

    Here’s what I would do (replace my Rectangle with your ListBox):

    <Window
        x:Class="Wpf_Playground.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow"
        Height="350"
        Width="525">
        <Grid>
            <RichTextBox
                Margin="0,0,0,32"
                x:Name="rtb"
                SpellCheck.IsEnabled="True"
                SelectionChanged="RtbSelectionChanged"
                TextChanged="RtbTextChanged">
            </RichTextBox>
            <Rectangle
                x:Name="rect"
                Width="30"
                Height="30"
                Fill="#80000000"
                VerticalAlignment="Top"
                HorizontalAlignment="Left"
                IsHitTestVisible="False"/>
            <TextBlock
                x:Name="tb"
                Margin="0"
                VerticalAlignment="Bottom" />
        </Grid>
    </Window>
    
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Documents;
    
    namespace Wpf_Playground
    {
        /// <summary>
        /// Interaction logic for MainWindow.xaml
        /// </summary>
        public partial class MainWindow
        {
            /// <summary>
            /// Initializes a new instance of the <see cref="MainWindow"/> class.
            /// </summary>
            public MainWindow()
            {
                InitializeComponent();
            }
    
            private void RtbSelectionChanged(object sender, RoutedEventArgs e)
            {
                this.UpdateCaretInfo();
            }
    
            /// <summary>
            /// The update caret info.
            /// </summary>
            private void UpdateCaretInfo()
            {
                var caretRect =
                    rtb.CaretPosition.GetCharacterRect(LogicalDirection.Forward);
                tb.Text = caretRect.ToString();
    
                rect.Margin = new Thickness(
                    caretRect.Right, 
                    caretRect.Bottom, 
                    -caretRect.Right, 
                    -caretRect.Bottom);
            }
    
            private void RtbTextChanged(object sender, TextChangedEventArgs e)
            {
                this.UpdateCaretInfo();
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a RichTextBox that looks like this: TEXT NEXT_TEXT 10.505 -174.994 0 TEXT
I have a RichTextBox in a WPF Application. I would like to apply alternate
I have a richtextbox in an app and I'd like key words to be
I have a Windows Forms application that on it I have a RichTextBox, like
This question is about WinForms RichTextbox. I have a RichTextbox with ScrollBars property set
I have a custom control inherited from RichTextBox. This control has the ability to
I have a form app. inside I have a richTextBox. How to make make
I have a richTextBox I am using to perform some syntax highlighting. This is
Right now I have 3 RichTextBox(es) with text in them. I am taking this
If I have a RichTextBox and want output like the first line is 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.