Skip to content

Commit

Permalink
fix command bar extension typeof typo
Browse files Browse the repository at this point in the history
  • Loading branch information
United600 authored Jan 15, 2025
1 parent 73cdcf1 commit 9b814b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Screenbox/Controls/Extensions/CommandBarExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ internal class CommandBarExtensions
/// Attached <see cref="DependencyProperty"/> for binding a <see cref="KeyboardAccelerator"/> to the more <see cref="Button"/> of the associated <see cref="CommandBar"/>
/// </summary>
public static readonly DependencyProperty MoreButtonKeyboardAcceleratorsProperty = DependencyProperty.RegisterAttached(
"MoreButtonKeyboardAccelerators", typeof(KeyboardAccelerator), typeof(CommandBar), new PropertyMetadata(null, OnMoreButtonKeyboardAcceleratorsPropertyChanged));
"MoreButtonKeyboardAccelerators", typeof(KeyboardAccelerator), typeof(CommandBarExtensions), new PropertyMetadata(null, OnMoreButtonKeyboardAcceleratorsPropertyChanged));

/// <summary>
/// Gets the <see cref="KeyboardAccelerator"/> for the more <see cref="Button"/> of the associated <see cref="CommandBar"/>
Expand Down

0 comments on commit 9b814b2

Please sign in to comment.