| | |
| | | break; |
| | | case 7: |
| | | { |
| | | View.TipView tipView = new View.TipView(); |
| | | tipView.InputBox("", (s) => |
| | | { |
| | | if (!string.IsNullOrEmpty(s)) |
| | | { |
| | | |
| | | AddButton addButton = new AddButton(); |
| | | MainPage.BasePageView.AddChidren(addButton); |
| | | addButton.Show(); |
| | | MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1; |
| | | |
| | | |
| | | //Test test = new Test(); |
| | | //MainPage.BasePageView.AddChidren(test); |
| | | //test.Show(); |
| | | //MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1; |
| | | } |
| | | }); |
| | | Method method = new Method(); |
| | | method.AddControl(); |
| | | |
| | | } |
| | | break; |
| | | |