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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T06:28:01+00:00 2026-05-14T06:28:01+00:00

I have this custom textbox that I am working on and I can use

  • 0

I have this custom textbox that I am working on and I can use it in xaml, but when I run my app I cannot select it or type in it. Here is my code:

public class ModdedTextBox : TextBox
{
    private bool selectionStartChangeFromUI;
    private bool selectionLengthChangeFromUI;
    private bool selectedTextChangeFromUI;

    static ModdedTextBox()
    {
        DefaultStyleKeyProperty.OverrideMetadata(typeof(ModdedTextBox), new FrameworkPropertyMetadata(typeof(ModdedTextBox)));
        //this.SelectionChanged += this.OnSelectionChanged;
        //PropertyDescriptor VerticalOffsetProperty = TypeDescriptor.GetProperties(typeof(ModdedTextBox))["VerticalOffset"];
        //VerticalOffsetProperty.AddValueChanged(this, this.OnVerticalOffsetChanged);
    }
    public static readonly DependencyProperty BindableSelectionStartProperty =
    DependencyProperty.Register(
    "BindableSelectionStart",
    typeof(int),
    typeof(ModdedTextBox),
    new PropertyMetadata(OnBindableSelectionStartChanged));

    public static readonly DependencyProperty BindableSelectionLengthProperty =
        DependencyProperty.Register(
        "BindableSelectionLength",
        typeof(int),
        typeof(ModdedTextBox),
        new PropertyMetadata(OnBindableSelectionLengthChanged));

    public static readonly DependencyProperty BindableSelectedTextProperty =
        DependencyProperty.Register(
        "BindableSelectedText",
        typeof(string),
        typeof(ModdedTextBox),
        new PropertyMetadata(OnBindableSelectedTextChanged));
    public static readonly DependencyProperty DelayedTextProperty =
        DependencyProperty.Register(
        "DelayedText",
        typeof(string),
        typeof(ModdedTextBox),
        new PropertyMetadata(OnDelayedTextChanged));

    public int BindableSelectionStart
    {
        get
        {
            return (int)this.GetValue(BindableSelectionStartProperty);
        }

        set
        {
            this.SetValue(BindableSelectionStartProperty, value);
        }
    }

    public int BindableSelectionLength
    {
        get
        {
            return (int)this.GetValue(BindableSelectionLengthProperty);
        }

        set
        {
            this.SetValue(BindableSelectionLengthProperty, value);
        }
    }
    public string BindableSelectedText
    {
        get
        {
            return (string)this.GetValue(BindableSelectedTextProperty);
        }

        private set
        {
            this.SetValue(BindableSelectedTextProperty, value);
        }
    }
    public string DelayedText
    {
        get
        {
            return (string)this.GetValue(DelayedTextProperty);
        }

        private set
        {
            this.SetValue(DelayedTextProperty, value);
        }
    }

    private static void OnBindableSelectionStartChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs args)
    {
        var textBox = dependencyObject as ModdedTextBox;

        if (!textBox.selectionStartChangeFromUI)
        {
            int newValue = (int)args.NewValue;
            textBox.SelectionStart = newValue;
        }
        else
        {
            textBox.selectionStartChangeFromUI = false;
        }
    }

    private static void OnBindableSelectionLengthChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs args)
    {
        var textBox = dependencyObject as ModdedTextBox;

        if (!textBox.selectionLengthChangeFromUI)
        {
            int newValue = (int)args.NewValue;
            textBox.SelectionLength = newValue;
        }
        else
        {
            textBox.selectionLengthChangeFromUI = false;
        }
    }
    private static void OnBindableSelectedTextChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs args)
    {
        var textBox = dependencyObject as ModdedTextBox;

        if (!textBox.selectedTextChangeFromUI)
        {
            string newValue = (string)args.NewValue;
            textBox.BindableSelectedText = newValue;
        }
        else
        {
            textBox.selectedTextChangeFromUI = false;
        }
    }
    private static void OnDelayedTextChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs args)
    {
    }
    private void OnSelectionChanged(object sender, RoutedEventArgs e)
    {
        if (this.BindableSelectionStart != this.SelectionStart)
        {
            this.selectionStartChangeFromUI = true;
            this.BindableSelectionStart = this.SelectionStart;
        }

        if (this.BindableSelectionLength != this.SelectionLength)
        {
            this.selectionLengthChangeFromUI = true;
            this.BindableSelectionLength = this.SelectionLength;
        }
        if (this.BindableSelectedText != this.SelectedText)
        {
            this.selectedTextChangeFromUI = true;
            this.BindableSelectedText = this.SelectedText;
        }
    }
    private void OnVerticalOffsetChanged(object sender, EventArgs e)
    {
        MessageBox.Show("hello the vertical offset works");
    }
}
  • 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-14T06:28:01+00:00Added an answer on May 14, 2026 at 6:28 am

    your control needs a style to display itself.
    comment out this one line from the constructor, to use default style

    DefaultStyleKeyProperty.OverrideMetadata(typeof(ModdedTextBox), new FrameworkPropertyMetadata(typeof(ModdedTextBox)));
    

    Done!

    edit: Alternatively this will explicitly make your control use TextBox style

    DefaultStyleKeyProperty.OverrideMetadata(
        typeof(ModdedTextBox),
        new FrameworkPropertyMetadata(typeof(TextBox)));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have this page that has some basic custom tabs: http://demo.unlockedmanagement.com/users/view/2 * NOTE
This is my custom model binder. I have my breakpoint set at BindModel but
I have a custom class that uses boost mutexes and locks like this (only
I have made a custom textbox that inherits from textbox. using System.Drawing; using System;
I want to create custom Textbox control in asp.net.But i have one doubt when
I have a custom user control (ascx) that contains a textbox and a Javascript-based
I'm using system.net.mail and have a textbox that users can enter their email address
I have a ListView which contains custom rows. This custom row has following UI
Suppose we have this example: http://techdroid.kbeanie.com/2009/07/custom-listview-for-android.html with source code available here: http://code.google.com/p/myandroidwidgets/source/browse/trunk/Phonebook/src/com/abeanie/ How can
REVISED QUESTION : We have tracked this down to a custom add to cart

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.