コード例 #1
0
 public FormIFFILFWSEditor(FormNotifyIcon formNotifyIcon)
 {
     InitializeComponent();
       this.m_FormNotifyIcon = formNotifyIcon;
       this.m_FormIFFEditorFind = new FormIFFEditorFind(this);
       this.m_FormIFFEditorReplace = new FormIFFEditorReplace(this);
       this.Text = "TRE Explorer " + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
 }
コード例 #2
0
        public FormDDSTGARenderFrame(String Filename, FormNotifyIcon formNotifyIcon)
        {
            InitializeComponent();

              this.m_Filename = Filename;
              this.m_FormNotifyIcon = formNotifyIcon;

              InitializeD3D();
        }
コード例 #3
0
        public FormDDSTGARenderFrame(String Filename, FormNotifyIcon formNotifyIcon)
        {
            InitializeComponent();

            this.m_Filename       = Filename;
            this.m_FormNotifyIcon = formNotifyIcon;

            InitializeD3D();
        }
コード例 #4
0
        public FormTOCTREViewer(FormNotifyIcon formNotifyIcon)
        {
            InitializeComponent();

            this.m_FormNotifyIcon = formNotifyIcon;

            this.listView.View = TRE_Explorer.Properties.Settings.Default.DefaultView;
            CheckView();

            m_FormFilter = new FormFilter();
            m_FormProgress = new FormProgress(this);
            m_FormProgress.Resize += new EventHandler(m_FormProgress_Resize);

            m_ManualResetEvent_StopThread = new ManualResetEvent(false);
            m_ManualResetEvent_ThreadStopped = new ManualResetEvent(false);

            delegateSetProgress = new DelegateSetProgress(this.SetProgress);
            delegateSetTitle = new DelegateSetTitle(this.SetTitle);
            delegateSetCaption = new DelegateSetCaption(this.SetCaption);
            delegateSetLabel = new DelegateSetLabel(this.SetLabel);
            delegateStopThread = new DelegateStopThread(this.StopThread);
            delegateLoadThreadFinished = new DelegateLoadThreadFinished(this.LoadThreadFinished);
            delegateExtractThreadFinished = new DelegateExtractThreadFinished(this.ExtractThreadFinished);

            this.listView.VirtualListSize = 0;
        }
コード例 #5
0
 public FormSTFEditor(FormNotifyIcon formNotifyIcon)
 {
     InitializeComponent();
     this.m_FormNotifyIcon = formNotifyIcon;
     this.Text             = "TRE Explorer " + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
 }
コード例 #6
0
ファイル: FormSTFEditor.cs プロジェクト: MTGUli/TREExplorer
 public FormSTFEditor(FormNotifyIcon formNotifyIcon)
 {
     InitializeComponent();
       this.m_FormNotifyIcon = formNotifyIcon;
       this.Text = "TRE Explorer " + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
 }