-
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b5a3a3
commit 5b49063
Showing
12 changed files
with
165 additions
and
313 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
using System.Runtime.Serialization; | ||
using Dock.Model.Controls; | ||
using Dock.Model.ReactiveUI.Core; | ||
using ReactiveUI; | ||
|
||
namespace Dock.Model.ReactiveUI.Controls; | ||
|
||
/// <summary> | ||
/// Docking panel dock. | ||
/// </summary> | ||
[DataContract(IsReference = true)] | ||
public class DockDock : DockBase, IDockDock | ||
{ | ||
private bool _lastChildFill = true; | ||
public partial class DockDock : DockBase, IDockDock | ||
{ | ||
/// <summary> | ||
/// Initializes new instance of the <see cref="DockDock"/> class. | ||
/// </summary> | ||
public DockDock() | ||
{ | ||
_lastChildFill = true; | ||
} | ||
|
||
/// <inheritdoc/> | ||
[DataMember(IsRequired = false, EmitDefaultValue = true)] | ||
public bool LastChildFill | ||
{ | ||
get => _lastChildFill; | ||
set => this.RaiseAndSetIfChanged(ref _lastChildFill, value); | ||
} | ||
} | ||
[Reactive] | ||
public partial bool LastChildFill { get; set; } | ||
} |
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
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
Oops, something went wrong.