/////////////////////////////////////////////////////////////////////// // Fire The Event To The Application (Change all but the view!) /////////////////////////////////////////////////////////////////////// internal void DingEvent() { UISupport item = UISupport.DataToolBar | UISupport.ApplicationToolBar | UISupport.ExperimentSetting | UISupport.Menu; ChangeExperimentSetting(); RequestUIRefresh(item); }
// Create With Settings public Component(string title, string tip, bool exec, bool?state, bool vis, UISupport type) { title_ = title; toolTip_ = tip; executable_ = exec; state_ = state; visiblity_ = vis; type_ = type; }