-
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #375 from wieslawsoltes/ReactiveGenerator
Use ReactiveGenerator
- Loading branch information
Showing
24 changed files
with
185 additions
and
334 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
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
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
Oops, something went wrong.