/// <summary>
        /// Creates and adds the required GUI elements
        /// </summary>
        private void CreateGUI()
        {
            // Create the add button
            AddButton = ControlsFactory.CreateStandardAddCircularButton();

            AddButton.Command = new RelayCommand(async() =>
            {
                // Create the form
                var form = new DataForm <DataGridPresenterMap>(new DataGridPresenterMap(QueryMap))
                {
                    Mapper = CeidDiplomatikiDataModelHelpers.DataGridPresenterMapMapper.Value
                }
                .ShowInput(x => x.Name, settings => { settings.Name = CeidDiplomatikiDataModelHelpers.DataGridPresenterMapMapper.Value.GetTitle(x => x.Name); settings.IsRequired = true; })
                .ShowInput(x => x.Description, settings => settings.Name      = CeidDiplomatikiDataModelHelpers.DataGridPresenterMapMapper.Value.GetTitle(x => x.Description))
                .ShowStringColorInput(x => x.Color, settings => settings.Name = CeidDiplomatikiDataModelHelpers.DataGridPresenterMapMapper.Value.GetTitle(x => x.Color));

                // Show an add dialog
                var dialogResult = await DialogHelpers.ShowConventionalAddDialogAsync(this, "Data grid creation", null, form);

                // If we didn't get positive feedback...
                if (!dialogResult.Feedback)
                {
                    // Return
                    return;
                }

                // Get the manager
                var manager = CeidDiplomatikiDI.GetCeidDiplomatikiManager;

                // Register it
                QueryMap.Add(form.Model);

                // Save the changes
                var result = await manager.SaveChangesAsync();

                // If there was an error...
                if (!result.Successful)
                {
                    // Show the error
                    await result.ShowDialogAsync(this);

                    // Return
                    return;
                }

                // Add the model
                DataPresenter.Add(form.Model);
            });

            // Add it to the content grid
            ContentGrid.Children.Add(AddButton);
        }
示例#2
0
        /// <summary>
        /// Creates and adds the required GUI elements
        /// </summary>
        private void CreateGUI()
        {
            // Create the add button
            AddButton = ControlsFactory.CreateStandardAddCircularButton();

            AddButton.Command = new RelayCommand(async() =>
            {
                // Create the form
                var form = CeidDiplomatikiDataModelHelpers.CreatePageMapDataForm();

                // Set the model
                form.Model = new PageMap();

                // Show the dialog
                var dialogResult = await DialogHelpers.ShowConventionalAddDialogAsync(this, "Page creation", null, form);

                // If we didn't get positive feedback...
                if (!dialogResult.Feedback)
                {
                    // Return
                    return;
                }

                // Update the values of the model
                form.UpdateModelValues();

                // Get the manager
                var manager = CeidDiplomatikiDI.GetCeidDiplomatikiManager;

                // Register it
                manager.Register(form.Model);

                // Save the changes
                var result = await manager.SaveChangesAsync();

                // If there was an error...
                if (!result.Successful)
                {
                    // Show the error
                    await result.ShowDialogAsync(this);

                    // Return
                    return;
                }

                // Add it to the presenter
                DataPresenter.Add(form.Model);
            });

            // Add it to the content grid
            ContentGrid.Children.Add(AddButton);
        }
示例#3
0
        /// <summary>
        /// Creates and returns the <see cref="BaseItemsControlPage{TClass}.DataPresenter"/>
        /// </summary>
        /// <returns></returns>
        protected override IDataPresenter <PageMap> CreateDataPresenter()
        {
            return(new CollapsibleDataGrid <PageMap>()
            {
                Mapper = CeidDiplomatikiDataModelHelpers.PageMapMapper.Value
            }
                   .ShowData(x => x.Name)
                   .ShowData(x => x.Color)
                   .ShowData(x => x.Category)
                   .ShowData(x => x.Order)
                   .ShowData(x => x.Presenter)
                   .ShowData(x => x.Pages)

                   .SetColorUIElement(x => x.Color)
                   .SetDataPresenterSubElement(x => x.Pages,
                                               model => model.Pages.Count.ToString("page", "pages", "No pages"),
                                               model => CreateDataPresenter(),
                                               (presenter, model, button) =>
            {
                button.VectorSource = IconPaths.PlusPath;

                button.Command = new RelayCommand(async() =>
                {
                    // Create the form
                    var form = CeidDiplomatikiDataModelHelpers.CreatePageMapDataForm();

                    // Set the model
                    form.Model = new PageMap()
                    {
                        Parent = model
                    };

                    // Show the dialog
                    var dialogResult = await DialogHelpers.ShowConventionalAddDialogAsync(this, "Page creation", null, form);

                    // If we didn't get positive feedback...
                    if (!dialogResult.Feedback)
                    {
                        // Return
                        return;
                    }

                    // Update the values of the model
                    form.UpdateModelValues();

                    // Add the model to the parent model
                    model.Pages.Add(form.Model);

                    // Get the manager
                    var manager = CeidDiplomatikiDI.GetCeidDiplomatikiManager;

                    // Save the changes
                    var result = await manager.SaveChangesAsync();

                    // If there was an error...
                    if (!result.Successful)
                    {
                        // Show the error
                        await result.ShowDialogAsync(this);

                        // Return
                        return;
                    }

                    // Add it to the presenter
                    presenter.Add(form.Model);
                });
            })

                   .ConfigureOptions((container, grid, row, model) =>
            {
                container.AddEditOption("Page modification", null, () => CeidDiplomatikiDataModelHelpers.CreatePageMapDataForm(), async(model) => await CeidDiplomatikiDI.GetCeidDiplomatikiManager.SaveChangesAsync());
                container.AddDeleteOption("Page deletion", null, async(model) =>
                {
                    // Get the manger
                    var manager = CeidDiplomatikiDI.GetCeidDiplomatikiManager;

                    // If there is a parent...
                    if (model.Parent != null)
                    {
                        // Remove the model form the parent
                        model.Parent.Pages.Remove(model);
                    }
                    // Else...
                    else
                    {
                        // This is a root page so remove it from the manager
                        manager.Unregister(model);
                    }

                    // Save the changes
                    return await manager.SaveChangesAsync();
                });
            }));
        }