コード例 #1
0
ファイル: FormMain.cs プロジェクト: evildog1/APKToolGUI
 private void Decompiling()
 {
     ToLog(new ProcessRun.OutData(ProcessRun.StreamType.Info, DateTime.Now, "Decompiling " + Path.GetFileName(textBox2.Text)));
     apkTool.Decompiling(textBox2.Text,
                         Properties.Settings.Default.noSrc,
                         Properties.Settings.Default.noRes,
                         Properties.Settings.Default.force,
                         Properties.Settings.Default.framePathLocation);
 }
コード例 #2
0
        private void Decompiling()
        {
            this.Text = "Decompiling: " + System.IO.Path.GetFileName(args[1]);
            toolStripProgressBar1.Style = ProgressBarStyle.Marquee;

            apkTool.Decompiling(args[1],
                                Properties.Settings.Default.noSrc,
                                Properties.Settings.Default.noRes,
                                Properties.Settings.Default.force,
                                Properties.Settings.Default.framePathLocation);
        }