forked from Dirkster99/AvalonDock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dirkster99#37 Resize behavior of anchorable panels, the case when pan…
…els are not visible
- Loading branch information
1 parent
5d0c8eb
commit 59171a5
Showing
8 changed files
with
303 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
source/Components/Xceed.Wpf.AvalonDock/Layout/IAdjustableSizeLayout.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/************************************************************************************* | ||
Extended WPF Toolkit | ||
Copyright (C) 2007-2013 Xceed Software Inc. | ||
This program is provided to you under the terms of the Microsoft Public | ||
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license | ||
For more features, controls, and fast professional support, | ||
pick up the Plus Edition at http://xceed.com/wpf_toolkit | ||
Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids | ||
***********************************************************************************/ | ||
|
||
using System.Windows; | ||
|
||
namespace Xceed.Wpf.AvalonDock.Layout | ||
{ | ||
public interface IAdjustableSizeLayout | ||
{ | ||
void AdjustFixedChildrenPanelSizes(Size? parentSize = null); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.