-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1319 from sillsdev/added-sil-resources-to-provide…
…-logo Added static SilResources class with property SilLogo101x113.
- Loading branch information
Showing
3 changed files
with
18 additions
and
5 deletions.
There are no files selected for viewing
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
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
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,12 @@ | ||
using System.Drawing; | ||
using JetBrains.Annotations; | ||
using SIL.Windows.Forms.Properties; | ||
|
||
namespace SIL.Windows.Forms.Widgets | ||
{ | ||
public static class SilResources | ||
{ | ||
[PublicAPI] | ||
public static Bitmap SilLogo101x113 => Resources.SILLogoBlue101x113; | ||
} | ||
} |