-
Notifications
You must be signed in to change notification settings - Fork 3
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 #196 from SainsburyWellcomeCentre/aeon-environment
Add property grid view configuration properties
- Loading branch information
Showing
3 changed files
with
14 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
using Bonsai; | ||
using Bonsai.Expressions; | ||
using System.ComponentModel; | ||
|
||
namespace Aeon.Environment | ||
{ | ||
[TypeVisualizer(typeof(ExternalizedPropertiesVisualizer))] | ||
[Description("Provides a configurable visualizer for global workflow properties.")] | ||
public class ExperimentProperties : UnitBuilder | ||
{ | ||
[Description("Specifies whether the help text box is visible.")] | ||
public bool HelpVisible { get; set; } = true; | ||
|
||
[Description("Specifies whether the toolbar is visible.")] | ||
public bool ToolbarVisible { get; set; } = true; | ||
} | ||
} |
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