mirror of
https://github.com/greenshot/greenshot
synced 2025-08-20 21:43:24 -07:00
Test with the ImgurPlugin and designer language support, the form needs to extend a simple class which extends GreenshotForm and implements the language pattern getter. Some day we can change this to be simpler when there is only one global Language object...
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1774 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
d8ee90e5f1
commit
d1b5232898
9 changed files with 190 additions and 87 deletions
20
GreenshotImgurPlugin/Forms/ImgurForm.cs
Normal file
20
GreenshotImgurPlugin/Forms/ImgurForm.cs
Normal file
|
@ -0,0 +1,20 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using GreenshotPlugin.Controls;
|
||||
using GreenshotPlugin.Core;
|
||||
using Greenshot.IniFile;
|
||||
using System.ComponentModel.Design;
|
||||
using System.Reflection;
|
||||
using System.IO;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace GreenshotImgurPlugin.Forms {
|
||||
public class ImgurForm : GreenshotForm {
|
||||
protected override string LanguagePattern {
|
||||
get {
|
||||
return Language.LANGUAGE_FILENAME_PATTERN;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue