First create solution
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using System.Text;
|
||||
using System.Linq;
|
||||
using DevExpress.ExpressApp;
|
||||
using System.ComponentModel;
|
||||
using DevExpress.ExpressApp.DC;
|
||||
using System.Collections.Generic;
|
||||
using DevExpress.Persistent.Base;
|
||||
using DevExpress.ExpressApp.Model;
|
||||
using DevExpress.ExpressApp.Actions;
|
||||
using DevExpress.ExpressApp.Editors;
|
||||
using DevExpress.ExpressApp.Updating;
|
||||
using DevExpress.ExpressApp.Model.Core;
|
||||
using DevExpress.ExpressApp.Model.DomainLogics;
|
||||
using DevExpress.ExpressApp.Model.NodeGenerators;
|
||||
|
||||
namespace Nuvolar.Module.CSharp
|
||||
{
|
||||
// For more typical usage scenarios, be sure to check out http://documentation.devexpress.com/#Xaf/clsDevExpressExpressAppModuleBasetopic.
|
||||
public sealed partial class CSharpModule : ModuleBase
|
||||
{
|
||||
public CSharpModule()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
public override IEnumerable<ModuleUpdater> GetModuleUpdaters(IObjectSpace objectSpace, Version versionFromDB)
|
||||
{
|
||||
ModuleUpdater updater = new DatabaseUpdate.Updater(objectSpace, versionFromDB);
|
||||
return new ModuleUpdater[] { updater };
|
||||
}
|
||||
public override void Setup(XafApplication application)
|
||||
{
|
||||
base.Setup(application);
|
||||
// Manage various aspects of the application UI and behavior at the module level.
|
||||
}
|
||||
public override void ExtendModelInterfaces(ModelInterfaceExtenders extenders)
|
||||
{
|
||||
base.ExtendModelInterfaces(extenders);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user