summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-05-07 18:58:46 +0000
committersr55 <[email protected]>2010-05-07 18:58:46 +0000
commit3698468402be2e371a53489fb65d0deb9b17659f (patch)
tree1657d95bb5e669b244229400181757d4a11e1051 /win/C#/frmMain.cs
parentbcc3c4e2ac8dbb14353a3e9f4ba643725daa3beb (diff)
WinGui:
- Added Export support to the Chapters Tab. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3287 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r--win/C#/frmMain.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index 0b89a573b..bfa405412 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -1605,6 +1605,19 @@ namespace Handbrake
}
}
+ private void btn_export_Click(object sender, EventArgs e)
+ {
+ SaveFileDialog saveFileDialog = new SaveFileDialog();
+ saveFileDialog.Filter = "Csv File|*.csv";
+ saveFileDialog.DefaultExt = "csv";
+ if (saveFileDialog.ShowDialog() == DialogResult.OK)
+ {
+ string filename = saveFileDialog.FileName;
+
+ Main.SaveChapterMarkersToCsv(this, filename);
+ }
+ }
+
private void mnu_resetChapters_Click(object sender, EventArgs e)
{
data_chpt.Rows.Clear();
@@ -2075,6 +2088,7 @@ namespace Handbrake
#endregion
+
// This is the END of the road ****************************************
}
} \ No newline at end of file