当前位置: 首页>>代码示例>>C#>>正文


C# ImageSource.ToString方法代码示例

本文整理汇总了C#中System.Windows.Media.ImageSource.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# ImageSource.ToString方法的具体用法?C# ImageSource.ToString怎么用?C# ImageSource.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Windows.Media.ImageSource的用法示例。


在下文中一共展示了ImageSource.ToString方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: SetIconFromImageSource

        private static void SetIconFromImageSource(TaskbarIcon taskbarIcon, ImageSource imageSource)
        {
            // Copied from Hardcodet.Wpf.TaskbarNotification.Util.ToIcon
            Icon icon = null;
            if (imageSource != null)
            {
                Uri uri = new Uri(imageSource.ToString());
                StreamResourceInfo streamInfo = Application.GetResourceStream(uri);

                if (streamInfo == null)
                {
                    string msg = "The supplied image source '{0}' could not be resolved.";
                    msg = String.Format(msg, imageSource);
                    throw new ArgumentException(msg);
                }

                icon = new Icon(streamInfo.Stream, idealIconSize, idealIconSize);
            }
            
            taskbarIcon.Icon = icon;
        }
开发者ID:RipleyBooya,项目名称:SyncTrayzor,代码行数:21,代码来源:NotifyIconResolutionUtilities.cs

示例2: FromImageSource

 private static Drawing.Icon FromImageSource(ImageSource icon)
 {
     if (icon == null)
     {
         return null;
     }
     Uri iconUri = new Uri(icon.ToString());
     return new Drawing.Icon(Application.GetContentStream(iconUri).Stream);
 }
开发者ID:salerth,项目名称:teambuildtray,代码行数:9,代码来源:NotifyIcon.cs

示例3: draw_sprite

        ////////////////////////////////////////////////////////////////////////////////
        // draw a bitmap on a canvas from a file name
        public void draw_sprite(Canvas canvas, ImageSource image_file, int x, int y)
        {
            Image image = new Image
            {
            Source = new BitmapImage (new Uri (image_file.ToString ())),
            };

              canvas.Children.Add (image);
              Canvas.SetLeft (image, x);
              Canvas.SetTop  (image, y);
        }
开发者ID:ZachBowman,项目名称:Dreamscape_Boxland,代码行数:13,代码来源:MainWindow.xaml.cs

示例4: FromImageSource

        private static Icon FromImageSource(ImageSource icon)
        {
            if (icon == null)
            {
                return null;
            }
            var iconUri = new Uri(icon.ToString());

            return new Icon("." + iconUri.LocalPath);
        }
开发者ID:bperreault,项目名称:autox,代码行数:10,代码来源:NotificationAreaIcon.cs

示例5: FromImageSource

        System.Drawing.Icon FromImageSource(ImageSource icon)
        {
            if (icon == null)
            {
                return null;
            }

            Uri iconUri = new Uri(icon.ToString());

            return new System.Drawing.Icon(Application.GetResourceStream(iconUri).Stream);
        }
开发者ID:aronweiler,项目名称:DataSafe,代码行数:11,代码来源:DataSafeWindow.xaml.cs

示例6: FromImageSource

 private static Icon FromImageSource(ImageSource icon)
 {
     if (icon == null)
     {
         return null;
     }
     Uri iconUri = new Uri(icon.ToString());
     return new Icon(Application.GetResourceStream(iconUri).Stream);
 }
开发者ID:bejo4ever,项目名称:antrian,代码行数:9,代码来源:NotifyIcon.cs


注:本文中的System.Windows.Media.ImageSource.ToString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。