mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Work on resource and settings managers, added some documentation.
This commit is contained in:
@ -61,11 +61,12 @@ namespace RainmeterStudio.SkinDesignerPlugin.Resources {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to /Resources/Graphics/transparent_background.png.
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
public static string TransparentBackground {
|
||||
public static System.Drawing.Bitmap TransparentBackground {
|
||||
get {
|
||||
return ResourceManager.GetString("TransparentBackground", resourceCulture);
|
||||
object obj = ResourceManager.GetObject("TransparentBackground", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -117,7 +117,8 @@
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="TransparentBackground" xml:space="preserve">
|
||||
<value>/Resources/Graphics/transparent_background.png</value>
|
||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="TransparentBackground" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>graphics\transparent_background.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
</root>
|
Reference in New Issue
Block a user