-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
37691ff
commit 34afe3a
Showing
15 changed files
with
3,952 additions
and
44 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Data; | ||
using System.Drawing; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows.Forms; | ||
using System.IO; | ||
|
||
namespace Echoes | ||
{ | ||
public partial class Converter : Form | ||
{ | ||
public List<string> files; | ||
public string outputPath = Path.Combine(Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location), "converted"); | ||
|
||
public Converter() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
public Converter(List<string> files) | ||
{ | ||
InitializeComponent(); | ||
this.files = files; | ||
} | ||
|
||
void QueueConversion() | ||
{ | ||
if (files.Count <= 0) return; | ||
|
||
|
||
} | ||
|
||
private void convertWorker_DoWork(object sender, DoWorkEventArgs e) | ||
{ | ||
|
||
} | ||
|
||
private void convertWorker_ProgressChanged(object sender, ProgressChangedEventArgs e) | ||
{ | ||
|
||
} | ||
|
||
private void convertWorker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e) | ||
{ | ||
|
||
} | ||
|
||
private void outputPathButton_Click(object sender, EventArgs e) | ||
{ | ||
|
||
} | ||
|
||
private void convertButton_Click(object sender, EventArgs e) | ||
{ | ||
|
||
} | ||
} | ||
} |
Oops, something went wrong.