Inheritance: System.Windows.Forms.Form
Ejemplo n.º 1
0
        public FilterMenu(ProjectFilters parent, string path, string reason, MatchReason.Status status)
        {
            InitializeComponent();

            menuExtender = new MenuExtender();
            menuExtender.ImageList = imageList;

            this.path = path.Replace('/', '\\');
            this.status = status;
            this.reason = reason;
            this.parent = parent;

            RebuildFilterMenu();
        }
Ejemplo n.º 2
0
        public FilterMenu(ProjectFilters parent, string path, string reason, MatchReason.Status status)
        {
            InitializeComponent();

            menuExtender           = new MenuExtender();
            menuExtender.ImageList = imageList;

            this.path   = path.Replace('/', '\\');
            this.status = status;
            this.reason = reason;
            this.parent = parent;

            RebuildFilterMenu();
        }
Ejemplo n.º 3
0
 private void OpenCustomTypeDialog(Model.FoldersRow folder)
 {
     ProjectFilters customType = new ProjectFilters(folder.Table.DataSet as Model, folder);
     customType.ShowDialog();
 }