LuisM000 2019-01-29 21:30:40 +01:00
Родитель b34fe25992 fcb299ce8a
Коммит dd52f4bae6
2 изменённых файлов: 11 добавлений и 7 удалений

Просмотреть файл

@ -6,7 +6,7 @@ using Mono.Addins.Description;
[assembly: Addin(
"TextGenerator",
Namespace = "MonoDevelop",
Version = "0.1",
Version = "0.2",
Category = "IDE extensions"
)]

Просмотреть файл

@ -10,15 +10,14 @@ namespace VS4Mac.TextGenerator.Views
public class GenerateTextDialog : Dialog
{
VBox _mainBox;
HBox _optionsBox;
Label _optionsLabel;
ComboBox _generatorOptionsComboBox;
HBox _numberBox;
Label _numberLabel;
TextEntry _numberEntry;
HBox _buttonBox;
Button _generateButton;
HBox _optionsBox;
Label _optionsLabel;
ComboBox _generatorOptionsComboBox;
LipsumGeneratorService _textGeneratorService;
@ -38,7 +37,7 @@ namespace VS4Mac.TextGenerator.Views
_mainBox = new VBox
{
HeightRequest = 100,
WidthRequest = 235
WidthRequest = 250
};
_numberBox = new HBox();
@ -59,7 +58,12 @@ namespace VS4Mac.TextGenerator.Views
_optionsBox = new HBox();
_optionsLabel = new Label("Generator option:");
_generatorOptionsComboBox = new ComboBox();
_generatorOptionsComboBox = new ComboBox
{
WidthRequest = 150
};
_generatorOptionsComboBox.Items.Add("Characters");
_generatorOptionsComboBox.Items.Add("Words");
_generatorOptionsComboBox.Items.Add("Sentences");