Re: PopupButton example
Hi John,Actually our ComboBox style uses "M 0,0 L 2.5,3 L 5,0 Z". We will update it to match that since it wasn't the same.As for the image, you can use a ContentPresenter instead of TextBlock and...
View ArticleEnumEditBox enable drop down when clicking the box (instead of only the button)
As it stands, the dropdown is only opened when I click the drop down button, and not when I click anywhere on the box. I have looked at the source code and I am trying to determine what to tweak in...
View ArticleRe: EnumEditBox enable drop down when clicking the box (instead of only the...
Hi Jacob,If you are on our newer Editors product (the newer codebase as of v2017.1), if the IsEditable property is false on the edit box, it will open the pop up when clicking anywhere in the control....
View ArticleRe: EnumEditBox enable drop down when clicking the box (instead of only the...
Im not using 2017, and will consider upgrading, is there anyway to accomplish it in an earlier version?
View ArticleRe: EnumEditBox enable drop down when clicking the box (instead of only the...
Hi Jacob,I don't believe there are any options for supporting that in the older pre-2017.1 version of Editors. You might be able to override its PreviewLeftMouseButtonDown event and open the popup if...
View ArticleDoubleEditBox does not handle '.' of the numeric pad correctly
Hi,We were using the Legacy.Editors of the version 17.2.661, with a DoubleEditBox, if we pressed the '.' of the numeric pad, this character was replaced by a comma with the french language for example,...
View ArticleRe: DoubleEditBox does not handle '.' of the numeric pad correctly
Hello,In the older Editors, we had a custom TextBox control that was used as the input area of the edit box. While that did allow some nice customization as far as being able to alter some input and...
View ArticleDoubleEditBox Inline Alignment
Hi,is it possible to set an Inline inside of a DoubleEditBox not right aligned.Instead I need it directly behind the double value.Best,Jürgen
View ArticleDoubleEditBox Spinner Increment Rounding
I'm using a DoubleEditBox with the spinner visible. SmallChange is set to .1. Incrementing 1.111 gives you 1.211. I would like to round to SmallChange when using the spinner buttons. IOW,...
View ArticleRe: DoubleEditBox Inline Alignment
Hello,You can't adjust the location of an inline unless you retemplate the control. That being said, if you want some simple text label behind the number, you can use a custom text format. We show...
View ArticleRe: DoubleEditBox Spinner Increment Rounding
Hi John,All the incremental change requests (keyboard up/down, mouse wheel, spinner) flow through the protected virtual CreateIncrementalChangeRequest method. That method is passed an...
View ArticleRe: DoubleEditBox Inline Alignment
Instead of just a label behind the value I want to have a unit selection for recalculating the value.I changed the template to get it working.Thanks for the tip,Jürgen
View ArticleRe: DoubleEditBox Spinner Increment Rounding
Thanks for the tip! Would it be possible to build spinner rounding into DoubleEditBox? I think it would benefit all users.Currently if you set a DoubleEditBox’s spinner increment to .1,...
View ArticleRe: DoubleEditBox Spinner Increment Rounding
Hi John,That's a good idea. I believe we have it working in some code updates. If you'd like to help us test with a preview build, please write our support address and mention this thread.
View ArticleInt32EditBox - Built-In vs App UndoHistory
In my application, I've implemented my own UndoRedo history/framework. I track changes to relevant properties, controls, etc. Everything works great, except it seems like Actipro's Int32EditBoxes have...
View ArticleRe: Int32EditBox - Built-In vs App UndoHistory
Hi Justin,Actually the edit boxes in the newer versions of Editors use a regular WPF TextBox as the editing portion of their template. So it's Microsoft's own internal TextBox undo/redo system at work...
View ArticleRe: Int32EditBox - Built-In vs App UndoHistory
Aha, thanks - I'll look into that & see if I can figure something out :)
View ArticleReadonly DoubleEditBox issues
I have some controls defined like this:<editors:DoubleEditBox HorizontalAlignment="Left" CenterSlotHorizontalAlignment="Right" IsReadOnly="True" IsTabStop="False" />So, these are read-only, and I...
View ArticleRe: Readonly DoubleEditBox issues
Hi Jim,The following information is related to the Editors v2016.1 that you are using, before the Editors product was refactored.For the IsTabStop issue, the issue there is that the DoublePartGroup...
View ArticleRe: Readonly DoubleEditBox issues
Setting the attached property for the color issue works. The namespace declaration (in case anyone else needs this) is:xmlns:themes="http://schemas.actiprosoftware.com/winfx/xaml/themes"
View Article