Skip to content

Commit 06c63c3

Browse files
authored
Merge pull request #307 from gui-cs/updatev2
Update to latest v2 develop branch
2 parents 4c835ed + 6235c74 commit 06c63c3

File tree

106 files changed

+2827
-1498
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+2827
-1498
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ You can add new code to `MyDialog.cs` but avoid making any changes to `MyDialog.
7474
For example in `MyDialog.cs` after `InitializeComponent()` add the following:
7575

7676
```csharp
77-
button1.Accept += ()=>MessageBox.Query("Hello","Hello World","Ok");
77+
button1.Accepting += ()=>MessageBox.Query("Hello","Hello World","Ok");
7878
```
7979
Now when run clicking the button will trigger a message box.
8080

@@ -171,7 +171,7 @@ italics are experimental and require passing the `-e` flag when starting applica
171171
- [x] Container views (e.g. TabView)
172172
- [ ] To OS clipboard (e.g. open one Designer.cs View and copy to another)
173173
- [x] Retain PosRelative mappings in pasted views (e.g. `A` LeftOf `B`)
174-
- [x] Move views to subviews
174+
- [x] Move views to SubViews
175175
- [x] With mouse
176176
- [ ] With keyboard
177177
- [ ] Read and present xmldoc comments when editing properties

Showcase/Menu.Designer.cs

Lines changed: 303 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Showcase/Menu.cs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
//------------------------------------------------------------------------------
3+
4+
// <auto-generated>
5+
// This code was generated by:
6+
// TerminalGuiDesigner v2.0.0.0
7+
// You can make changes to this file and they will not be overwritten when saving.
8+
// </auto-generated>
9+
// -----------------------------------------------------------------------------
10+
namespace Showcase {
11+
using Terminal.Gui;
12+
13+
14+
public partial class Menu {
15+
16+
public Menu() {
17+
InitializeComponent();
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)