Skip to content

Commit

Permalink
V3.7.0 Released
Browse files Browse the repository at this point in the history
  • Loading branch information
XceedBoucherS committed Nov 26, 2019
1 parent 92ce0cf commit 1e0b826
Show file tree
Hide file tree
Showing 89 changed files with 814 additions and 6,049 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
internal static class _XceedVersionInfo
{
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
public const string BaseVersion = "3.6";
public const string BaseVersion = "3.7";
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
public const string Version = BaseVersion +
".0.0";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@
<avalonDockConverters:ActivateCommandLayoutItemFromLayoutModelConverter x:Key="ActivateCommandLayoutItemFromLayoutModelConverter" />
<avalonDockConverters:AnchorableContextMenuHideVisibilityConverter x:Key="AnchorableContextMenuHideVisibilityConverter" />

<DataTemplate x:Key="DocumentPaneControlContentTemplate">
<avalonDockControls:LayoutDocumentControl Model="{Binding}" />
</DataTemplate>

<!--DocumentPaneControlStyle-->
<Style x:Key="AvalonDock_ThemeAero_DocumentPaneControlStyle"
TargetType="{x:Type avalonDockControls:LayoutDocumentPaneControl}">
Expand Down Expand Up @@ -276,13 +280,9 @@
</Setter.Value>
</Setter>

<Setter Property="ContentTemplate">
<Setter.Value>
<DataTemplate>
<avalonDockControls:LayoutDocumentControl Model="{Binding}" />
</DataTemplate>
</Setter.Value>
</Setter>
<Setter Property="ContentTemplate"
Value="{StaticResource DocumentPaneControlContentTemplate}" />

</Style>

<!--AnchorablePaneControlStyle-->
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
internal static class _XceedVersionInfo
{
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
public const string BaseVersion = "3.6";
public const string BaseVersion = "3.7";
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
public const string Version = BaseVersion +
".0.0";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
<avalonDockConverters:ActivateCommandLayoutItemFromLayoutModelConverter x:Key="ActivateCommandLayoutItemFromLayoutModelConverter" />
<avalonDockConverters:AnchorableContextMenuHideVisibilityConverter x:Key="AnchorableContextMenuHideVisibilityConverter" />

<DataTemplate x:Key="DocumentPaneControlContentTemplate">
<avalonDockControls:LayoutDocumentControl Model="{Binding}" />
</DataTemplate>

<Style x:Key="AvalonDock_ThemeMetro_ToolButtonStyle"
TargetType="ToggleButton">
<Setter Property="Background"
Expand Down Expand Up @@ -284,13 +288,9 @@
</Setter.Value>
</Setter>

<Setter Property="ContentTemplate">
<Setter.Value>
<DataTemplate>
<avalonDockControls:LayoutDocumentControl Model="{Binding}" />
</DataTemplate>
</Setter.Value>
</Setter>
<Setter Property="ContentTemplate"
Value="{StaticResource DocumentPaneControlContentTemplate}" />

</Style>

<!--AnchorablePaneControlStyle-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
internal static class _XceedVersionInfo
{
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
public const string BaseVersion = "3.6";
public const string BaseVersion = "3.7";
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
public const string Version = BaseVersion +
".0.0";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
<avalonDockConverters:ActivateCommandLayoutItemFromLayoutModelConverter x:Key="ActivateCommandLayoutItemFromLayoutModelConverter" />
<avalonDockConverters:AnchorableContextMenuHideVisibilityConverter x:Key="AnchorableContextMenuHideVisibilityConverter" />

<DataTemplate x:Key="DocumentPaneControlContentTemplate">
<avalonDockControls:LayoutDocumentControl Model="{Binding}" />
</DataTemplate>


<Style x:Key="AvalonDock_ThemeVS2010_ToolButtonStyle"
TargetType="ToggleButton">
Expand Down Expand Up @@ -365,13 +369,9 @@
</Setter.Value>
</Setter>

<Setter Property="ContentTemplate">
<Setter.Value>
<DataTemplate>
<avalonDockControls:LayoutDocumentControl Model="{Binding}" />
</DataTemplate>
</Setter.Value>
</Setter>
<Setter Property="ContentTemplate"
Value="{StaticResource DocumentPaneControlContentTemplate}" />

</Style>

<!--AnchorablePaneControlStyle-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
internal static class _XceedVersionInfo
{
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
public const string BaseVersion = "3.6";
public const string BaseVersion = "3.7";
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields" )]
public const string Version = BaseVersion +
".0.0";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,15 @@ public void Drop( LayoutFloatingWindow floatingWindow )
this.Drop( fwAsDocument );
}

Dispatcher.BeginInvoke( new Action( () =>
if( currentActiveContent != null )
{
Dispatcher.BeginInvoke( new Action( () =>
{
currentActiveContent.IsSelected = false;
currentActiveContent.IsActive = false;
currentActiveContent.IsActive = true;
} ), DispatcherPriority.Background );
}
}

public virtual bool HitTest( Point dragPoint )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,28 +42,28 @@ internal LayoutAnchorablePaneGroupControl( LayoutAnchorablePaneGroup model )

protected override void OnFixChildrenDockLengths()
{
//if( _model.Orientation == Orientation.Horizontal )
//{
// for( int i = 0; i < _model.Children.Count; i++ )
// {
// var childModel = _model.Children[ i ] as ILayoutPositionableElement;
// if( !childModel.DockWidth.IsStar )
// {
// childModel.DockWidth = new GridLength( 1.0, GridUnitType.Star );
// }
// }
//}
//else
//{
// for( int i = 0; i < _model.Children.Count; i++ )
// {
// var childModel = _model.Children[ i ] as ILayoutPositionableElement;
// if( !childModel.DockHeight.IsStar )
// {
// childModel.DockHeight = new GridLength( 1.0, GridUnitType.Star );
// }
// }
//}
if( _model.Orientation == Orientation.Horizontal )
{
for( int i = 0; i < _model.Children.Count; i++ )
{
var childModel = _model.Children[ i ] as ILayoutPositionableElement;
if( !childModel.DockWidth.IsStar )
{
childModel.DockWidth = new GridLength( 1.0, GridUnitType.Star );
}
}
}
else
{
for( int i = 0; i < _model.Children.Count; i++ )
{
var childModel = _model.Children[ i ] as ILayoutPositionableElement;
if( !childModel.DockHeight.IsStar )
{
childModel.DockHeight = new GridLength( 1.0, GridUnitType.Star );
}
}
}
}

#endregion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
using System.Windows.Controls;
using System.Windows.Input;
using Xceed.Wpf.AvalonDock.Layout;
using System.Collections;
using System;

namespace Xceed.Wpf.AvalonDock.Controls
{
Expand Down Expand Up @@ -166,6 +168,34 @@ protected override void OnMouseRightButtonDown( MouseButtonEventArgs e )
}


#endregion

#region Internal Methods

internal void SetResourcesFromObject( FrameworkElement current )
{
while( current != null )
{
if( current.Resources.Count > 0 )
{
var entries = new DictionaryEntry[ current.Resources.Count ];
current.Resources.CopyTo( entries, 0 );
entries.ForEach( x =>
{
try
{
if( this.Resources[ x.Key ] == null )
{
this.Resources.Add( x.Key, x.Value );
}
}
catch( Exception ) { }
} );
}
current = current.Parent as FrameworkElement;
}
}

#endregion

#region Private Methods
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,34 @@ internal LayoutDocumentPaneControl( LayoutDocumentPane model )

#region Properties



























#region Model

public ILayoutElement Model
{
get
Expand All @@ -65,6 +93,8 @@ public ILayoutElement Model

#endregion

#endregion

#region Overrides

protected override System.Collections.IEnumerator LogicalChildren
Expand Down Expand Up @@ -113,5 +143,29 @@ private void OnLayoutUpdated( object sender, EventArgs e )
}

#endregion
























}
}
Loading

0 comments on commit 1e0b826

Please sign in to comment.