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

  • Home
  • SEARCH
  • 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 99533
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T00:24:21+00:00 2026-05-11T00:24:21+00:00

I have a custom user control with a textbox on it and I’d like

  • 0

I have a custom user control with a textbox on it and I’d like to expose the baseline (of the text in the textbox) snapline outside of the custom control. I know that you create a designer (inherited from ControlDesigner) and override SnapLines to get access to the snaplines, but I’m wondering how to get the text baseline of a control that I have exposed by my custom user control.

  • 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. 2026-05-11T00:24:22+00:00Added an answer on May 11, 2026 at 12:24 am

    I just had a similar need, and I solved it like this:

     public override IList SnapLines {     get     {         IList snapLines = base.SnapLines;          MyControl control = Control as MyControl;         if (control == null) { return snapLines; }          IDesigner designer = TypeDescriptor.CreateDesigner(             control.textBoxValue, typeof(IDesigner));         if (designer == null) { return snapLines; }         designer.Initialize(control.textBoxValue);          using (designer)         {             ControlDesigner boxDesigner = designer as ControlDesigner;             if (boxDesigner == null) { return snapLines; }              foreach (SnapLine line in boxDesigner.SnapLines)             {                 if (line.SnapLineType == SnapLineType.Baseline)                 {                     snapLines.Add(new SnapLine(SnapLineType.Baseline,                         line.Offset + control.textBoxValue.Top,                         line.Filter, line.Priority));                     break;                 }             }         }          return snapLines;     } } 

    This way it’s actually creating a temporary sub-designer for the subcontrol in order to find out where the ‘real’ baseline snapline is.

    This seemed reasonably performant in testing, but if perf becomes a concern (and if the internal textbox doesn’t move) then most of this code can be extracted to the Initialize method.

    This also assumes that the textbox is a direct child of the UserControl. If there are other layout-affecting controls in the way then the offset calculation becomes a bit more complicated.

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

Sidebar

Ask A Question

Stats

  • Questions 129k
  • Answers 129k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You can create your own ICacheDependency interface and use a… May 12, 2026 at 5:51 am
  • Editorial Team
    Editorial Team added an answer void doSomething(); looks like a snip from the header file,… May 12, 2026 at 5:51 am
  • Editorial Team
    Editorial Team added an answer Cassini will only serve local requests. If you want a… May 12, 2026 at 5:51 am

Related Questions

I have a custom user control with a textbox on it and I'd like
I'm running into a problem trying to anchor a textbox to a form on
I have a custom UserControl which tries to recreate auto-complete for a textbox. When
I have a WPF user control with a number of textboxes, this is hosted
I'm trying to make a combo box that behaves somewhat like the Firefox 3

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.