Int32EditBox
How to customize the contents of IncrementToolTip and DecrementToolTip in Int32EditBox.
View ArticleRe: Int32EditBox
Hello, You can customize any string resource at app startup with lines like this: ActiproSoftware.Products.Editors.SR.SetCustomString(ActiproSoftware.Products.Editors.SRName.UISpinnerIncrementBu...
View ArticleInt32EditBox: A way for set the step value?
Hey there,I would like to know if it's possible to set the step value for this object? In comparison with a NumericUpDown you're able to set up the step range. Is there a way to do this here? I d...
View ArticleRe: Int32EditBox: A way for set the step value?
Well, I guess I found the answer. The property SmallValue allows me to set up the step value, but in the documentation it wasn't clearly described for that. I found that randomly. I don't under...
View ArticleRe: Int32EditBox: A way for set the step value?
Hello, Yes the SmallChange and LargeChange values determine the increment amounts. For Int32EditBox, that is described in this documentation topic. That topic also links to the Edit Box Basics ...
View ArticleColorEditBox, can it work in RGBA mode?
I need the ARGB of color picker to show and output RGBA hex values. Is this possible? It's easy to convert the color picker value to RGBA, but I want it to show RGBA as well Thanks, Brian
View ArticleRe: ColorEditBox, can it work in RGBA mode?
Hi Brian, Just to make sure we're on the same page, are you referring to the ColorEditBox control or the ColorPicker control, or a different one?
View ArticleRe: ColorEditBox, can it work in RGBA mode?
I'm using the ColorEditBox, but am up for different options
View ArticleRe: ColorEditBox, can it work in RGBA mode?
Hi Brian, If you make a class that inherits ColorEditBox, you will have to do several things. Override the GenerateParts method. Its base implementation will return parts in ARGB order. You...
View ArticleWhy no horizontal scrollbar in property grid?
When using the sample app, if I reduce the size of the property grid, horizontal scrollbars never appear, and the controls in the editor column become impossible to use. I thought the property grid...
View ArticleRe: Why no horizontal scrollbar in property grid?
Hello, PropertyGrid does have a ScrollViewer in its template that kicks in for horizontal scrolling when required. That being said, the default PropertyGrid name/value columns are set up with st...
View ArticleRe: Why no horizontal scrollbar in property grid?
There's no way to set that column width in the xaml; I have to use code behind? I can't have the Column size to fit it's content? In my app I cannot hard-code some value for the MinWidth, I am u...
View ArticleRe: Why no horizontal scrollbar in property grid?
The name and value columns for a PropertyGrid are generated in code, so they cannot be configured in XAML. They are designed to use star-scaling by default to prevent the need of a horizontal scro...
View ArticleEnter at the AutoCompleteBox
If enter is pressed for the AutoCompleteBox, the box always takes over the selectedItem. That's actually a good thing. Is there still the possibility to accept the entered text with "Enter" in the ...
View ArticleRe: Enter at the AutoCompleteBox
Hello, The event args passed to the AutoCompleteBox.Submitted event will have e.Text, which is the text that comes from the selected item (in e.Item). The event args also has e.OriginalText, whi...
View ArticleDoubleEditBox wrap text or ScrollToHome()
Hi! I have a DoubleEditBox control in which I can add a very big number but I do not want to resize the control. For this particular case the TextAlignment is Center. My problem is after adding...
View ArticleRe: DoubleEditBox wrap text or ScrollToHome()
Hi Daniel, There is a TextBox in the edit box's visual hierarchy that is what you actually edit in. You would probably have to get an instance of that with our VisualTreeHelperExtended.GetDescen...
View ArticleSet value of Int32EditBox in Code
I am trying to revive an old code base that heavily used Actipro WPF going back to release 10. The last release we had used was 14.1. I jumped from that to 23.1.0.0 Of course I have found many t...
View Article