?? workflow.xoml.cs
字號:
using System;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Collections;
using System.Drawing;
using System.Workflow.ComponentModel.Compiler;
using System.Workflow.ComponentModel.Serialization;
using System.Workflow.ComponentModel;
using System.Workflow.ComponentModel.Design;
using System.Workflow.Runtime;
using System.Workflow.Activities;
using System.Workflow.Activities.Rules;
namespace wxwinter.wf.TestWorkflow
{
public partial class workflow : SequentialWorkflowActivity
{
public static DependencyProperty DataFormProperty = System.Workflow.ComponentModel.DependencyProperty.Register("DataForm", typeof(object), typeof(workflow));
private object dataForm = new System.Data.DataSet();
[Description("表單組")]
[Category("表單")]
[Browsable(true)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public object DataForm
{
get
{
return ((object)(base.GetValue(workflow.DataFormProperty)));
}
set
{
base.SetValue(workflow.DataFormProperty, value);
}
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -