New viewcontroller added.

This commit is contained in:
2017-03-08 11:48:15 +01:00
parent 916ed6edaa
commit d93adfcf66
3 changed files with 86 additions and 0 deletions
@@ -0,0 +1,36 @@
namespace Nuvolar.Module.Win.CSharp.Controllers
{
partial class Transfer_VC
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
}
#endregion
}
}
@@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DevExpress.Data.Filtering;
using DevExpress.ExpressApp;
using DevExpress.ExpressApp.Actions;
using DevExpress.ExpressApp.Editors;
using DevExpress.ExpressApp.Layout;
using DevExpress.ExpressApp.Model.NodeGenerators;
using DevExpress.ExpressApp.SystemModule;
using DevExpress.ExpressApp.Templates;
using DevExpress.ExpressApp.Utils;
using DevExpress.Persistent.Base;
using DevExpress.Persistent.Validation;
namespace Nuvolar.Module.Win.CSharp.Controllers
{
// For more typical usage scenarios, be sure to check out https://documentation.devexpress.com/eXpressAppFramework/clsDevExpressExpressAppViewControllertopic.aspx.
public partial class Transfer_VC : ViewController
{
public Transfer_VC()
{
InitializeComponent();
//Maradj laza !!!
// Target required Views (via the TargetXXX properties) and create their Actions.
}
protected override void OnActivated()
{
base.OnActivated();
// Perform various tasks depending on the target View.
}
protected override void OnViewControlsCreated()
{
base.OnViewControlsCreated();
// Access and customize the target View control.
}
protected override void OnDeactivated()
{
// Unsubscribe from previously subscribed events and release other references and resources.
base.OnDeactivated();
}
}
}
@@ -138,6 +138,12 @@
<Compile Include="Controllers\NewCustomersFromVC.Designer.cs"> <Compile Include="Controllers\NewCustomersFromVC.Designer.cs">
<DependentUpon>NewCustomersFromVC.cs</DependentUpon> <DependentUpon>NewCustomersFromVC.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Controllers\Transfer_VC.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="Controllers\Transfer_VC.Designer.cs">
<DependentUpon>Transfer_VC.cs</DependentUpon>
</Compile>
<Compile Include="DatabaseUpdate\Updater.cs" /> <Compile Include="DatabaseUpdate\Updater.cs" />
<Compile Include="Module.cs"> <Compile Include="Module.cs">
<SubType>Component</SubType> <SubType>Component</SubType>