-
-
Notifications
You must be signed in to change notification settings - Fork 338
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WPF ComboBoxCell: only elements within the rows bounding box can be selected #1658
Comments
Oh fun, thanks for reporting the issue! |
It's GridHandler.cs, Line 403 that triggers the (wrong) I suppose there is no way for It seems that Removing the full conditional block would fix the selection issue, but obviously would disable the Commit-on-Click-on-whitespace feature. Just removing the |
@ManuelHu ah, that makes sense to me now, thanks for clarifying the issue! I'll dig further. |
* Fixes picoe/Eto#1658: WPF ComboBoxCell: only elements within the rows bounding box can be selected
While the issue is mostly resolved (it works generally - but not all values can be selected), exactly the described issue still persists. When trying to select an element outside the bounding rectangle of all rows - but within the gridview, the drop down will just close and no value will be selected.
To be clear, with "rows bounding box" i mean the data area and specifically not the
GridView
s bounding box. That works. Every element of the drop down in the marked red areas can be selected, only "Normal" does not work:Expected Behavior
I can select all elements that are available in the drop down.
Actual Behavior
Only those elements which lie within the bounding rectangle or outside the grid control of the rows can be successfully clicked on. Even the same element can't be selected if the mouse pointer is outside the bounding box, while it works within.
Specifications
The text was updated successfully, but these errors were encountered: