CmisSync.UIHelpers.GetImageSource C# (CSharp) Method

GetImageSource() public static method

Get the image frame associated with given identifier.
public static GetImageSource ( string name ) : BitmapFrame
name string
return BitmapFrame
        public static BitmapFrame GetImageSource (string name) {
            return GetImageSource (name, "png");
        }

Same methods

UIHelpers::GetImageSource ( string name, string type ) : BitmapFrame

Usage Example

コード例 #1
0
 private void ApplyTutorialFourth()
 {
     slide_image.Source      = UIHelpers.GetImageSource("tutorial-slide-4");
     continue_button.Content = Properties_Resources.Finish;
     check_box.Content       = String.Format(Properties_Resources.Startup, Properties_Resources.ApplicationName);
     continue_button.Focus();
 }
All Usage Examples Of CmisSync.UIHelpers::GetImageSource