diff options
| author | Roy Ben-Shabat <Roy.mail.net@gmail.com> | 2022-05-24 16:03:33 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy.mail.net@gmail.com> | 2022-05-24 16:03:33 +0300 |
| commit | d63f3dcebd33aa7ea925dca33c63fc9994526c1b (patch) | |
| tree | 05ba9875a598e8e9cb11785571109393a46546e4 /Software/Visual_Studio/Tango.Explorer/ExplorerFileDefinition.cs | |
| parent | af1b5b025b7f2e7d2d70ce02d7004c439325c9b3 (diff) | |
| parent | 98b1a778572c2384ada8bd6b1ec799a8eb896d49 (diff) | |
| download | Tango-d63f3dcebd33aa7ea925dca33c63fc9994526c1b.tar.gz Tango-d63f3dcebd33aa7ea925dca33c63fc9994526c1b.zip | |
Merged PPC VFT
Diffstat (limited to 'Software/Visual_Studio/Tango.Explorer/ExplorerFileDefinition.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Explorer/ExplorerFileDefinition.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Explorer/ExplorerFileDefinition.cs b/Software/Visual_Studio/Tango.Explorer/ExplorerFileDefinition.cs index a1c4a05ae..fbbf2ef63 100644 --- a/Software/Visual_Studio/Tango.Explorer/ExplorerFileDefinition.cs +++ b/Software/Visual_Studio/Tango.Explorer/ExplorerFileDefinition.cs @@ -77,6 +77,13 @@ namespace Tango.Explorer Extension = ".csv", }; + public static ExplorerFileDefinition PDFFile => new ExplorerFileDefinition() + { + Icon = ResourceHelper.GetImageFromResources("/Images/file.png"), + Description = "PDF File", + Extension = ".pdf", + }; + static ExplorerFileDefinition() { _definitions = typeof(ExplorerFileDefinition).GetProperties(BindingFlags.Public | BindingFlags.Static).Where(x => x.PropertyType == typeof(ExplorerFileDefinition)).ToList().Select(x => x.GetValue(null, null) as ExplorerFileDefinition).ToList(); |
