Hello,
If keyboard down arrow hold the latest PropertyGirid editor changed focus on the another controls If we have TileBar control focus on the TileBar and navigate to back.
Please review screencast.
Hello,
If keyboard down arrow hold the latest PropertyGirid editor changed focus on the another controls If we have TileBar control focus on the TileBar and navigate to back.
Please review screencast.
We have fixed the issue described in this ticket and will include the fix in our next maintenance update. To apply this solution before the official update, request a hotfix by clicking the corresponding link for product versions you require.
Note: Hotfixes may be unavailable for beta versions and updates that are about to be released.
Hello Alexei,
Thank you for your clarification. You can handle the PropertyGridControl.PreviewKeyDown event to accomplish this task. Here is a corresponding code snippet.
C#private void pGrid_PreviewKeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{
if(e.Key == System.Windows.Input.Key.Down){
PropertyDefinitionBase col = pGrid.PropertyDefinitions[pGrid.PropertyDefinitions.Count - 1];
if (col.FullPath == pGrid.SelectedPropertyPath)
e.Handled = true;
}
}
Please take a moment to review the attached project illustrating the suggested approach.
Thanks,
Elliot
Hello, Thanks for your sample, Is it possible that the issue be solved in the next version? Because this behavior is seen only in the PropertyGridControl.
Hello Alexei,
I will forward this ticket to our R&D team, and we will contact you as soon as we get any results.
Thanks,
Elliot
Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.
Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.
Hi Alexei,
Please clarify the behavior you expect to see in this scenario. Should the PropertyGridControl move focus back to the first property definition?
Hello Ilya, I think like Grid Control after reaching the end property definition it must be stopped.