Skip to content

Commit

Permalink
Fix Issue #225 as suggest by bdachev in #225 (comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirkster99 committed Feb 22, 2021
1 parent 9fe305a commit 9eabdb8
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion source/Components/AvalonDock/Controls/DropDownControlArea.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/************************************************************************
/************************************************************************
AvalonDock
Copyright (C) 2007-2013 Xceed Software Inc.
Expand All @@ -25,6 +25,18 @@ namespace AvalonDock.Controls
/// <seealso cref="ContentControl"/>
public class DropDownControlArea : ContentControl
{
#region ctors
/// <summary>
/// Static class constructor
/// </summary>
static DropDownControlArea()
{
// Fixing issue with Keyboard up/down in textbox in floating anchorable focusing DropDownControlArea
// https://github.com/Dirkster99/AvalonDock/issues/225
FocusableProperty.OverrideMetadata(typeof(DropDownControlArea), new FrameworkPropertyMetadata(false));
}
#endregion ctors

#region Properties

#region DropDownContextMenu
Expand Down

0 comments on commit 9eabdb8

Please sign in to comment.