Re: PartEditBox DropDown Caret 'sticking'
Hi,Thanks for the prompt response. I'll investigate switching to editors:TextBox which, as you say, appears to work fine.Can I ask one more question using the same sample code? If you put the focus in...
View ArticleRe: Set doubleditbox (and int32editbox) in edit mode when clicking on the...
Hello,What you are trying to do with starting a selection unfortunately won't work with the current codebase. There is an internal mouseSelectionActive field in TextBoxBase that gets set to true only...
View ArticleRe: PartEditBox DropDown Caret 'sticking'
Hi Matt,We were able to sort out the cursor issue with regular TextBoxes. We had a LostFocus handler in the PartEditBox that would handle the event in a certain scenario. We are not sure that old...
View ArticleRe: PartEditBox DropDown Caret 'sticking'
Hi,Thanks again for the reply. I can confirm that the problem is resolved if we use reflection to unsubscribe the event handler.This is good news because in the end we couldn't use the Actipro TextBox...
View ArticleRe: PartEditBox DropDown Caret 'sticking'
Hi Matt,I believe we have the other issue with clicking the drop-down button fixed for the 2016.1 version. That required internal code changes.
View ArticleInt32EditBox with dropdown listbox
I would like to use theInt32EditBox essentially as a combobox, for the range 0 - 55. Do you have an example of this?<editors:Int32EditBox Name="DriveRadioChannel" Width="50" Maximum="55" Minimum="0"...
View ArticleRe: Int32EditBox with dropdown listbox
Hi Neil,If you look at the Int32EditBox QuickStart, you can see how a drop-down button can be made visible. That will make a calculator drop-down by default. Is that what you're looking for?
View ArticleRe: Int32EditBox with dropdown listbox
Actually, I was hoping to replace the calculator with a control of my own, based on a listbox.
View ArticleRe: Int32EditBox with dropdown listbox
Hi Neil,Sorry we didn't reply earlier. We thought we had posted a reply on this... You can customize the dropdown content via the DropDownContentTemplate property. The Default value is...
View ArticleHow to get rounded corners
Hello,is it possible to get rounded corners in textboxes, listboxes, comboboxes, buttons etc?Thanks in advance.Michael
View ArticleRe: How to get rounded corners
Hi Michael,Yes our theming system fully supports that, assuming you have native control theming enabled on our ThemeManager. If you add lines like this in your Application.Resources, it should...
View ArticleRe: How to get rounded corners
Thank you. That works.Is it possible to set the CornerRadius in Code (preferred) or bind CornerRadius to a property? I don't want to set a fix CornerRadius in code but let the user decide. KRMichael
View ArticleRe: How to get rounded corners
Many of the usage scenarios of those corner radius properties will assign those values to a built-in CornerRadius property on a control. If the control doesn't have a dedicated CornerRadius property,...
View ArticleHow do I make the Value property update on paste?
Note on the version selected: The version I see in the installation is v14.2.0611Hello,I have a class inheriting from the ActiproSoftware.Windows.Controls.Calendar.DateTimePicker which is mostly...
View ArticleWhat is easiest/best way to create Int16EditBox control?
We are using MVVM pattern. We want the data types in the VM to align with data types in the model, which means we have numerous Int16 properties. When we use the Int32EditBox control and bind to an...
View ArticleRe: How do I make the Value property update on paste?
Hi Kyle,The user would probably need to press Enter to commit the value before typing in whatever additional text they wish to do. Enter will commit the same as lost focus. I'm not sure what else to...
View ArticleRe: How do I make the Value property update on paste?
Thank you for the response, that is helpful.
View ArticleRe: What is easiest/best way to create Int16EditBox control?
Hi Brad,It's a fairly complicated process to create another whole edit box for numbers since there's a lot of codebehind for parts that is needed. Instead of doing that, I would recommend using...
View ArticleDoubleEditBox context menu
Is there a simple "Copy/Paste" context menu available for a DoubleEditBox?
View ArticleRe: DoubleEditBox context menu
Hi John,Sorry there isn't a built-in context menu for that. Ctrl+A, Ctrl+C and Ctrl+V should work though.
View Article