我必須將圖像添加到我的標籤,但我找不到解決方案如何執行此操作。 我使用嘗試此:如何將圖像添加到標籤?
InitializeComponent();
url = Directory.GetCurrentDirectory() + @"/Cards/cardSkin.png";
mylabel.Background = new ImageBrush(new BitmapImage(new Uri(url)));
即使我使用這個權利,我不知道,我只是複製這個從別人什麼項目我們做了與類。 無論如何,我試圖創建Image img = Image.FromFile("YourFile.bmp");
,但我不知道爲什麼,.FromFile
不適合我。 你們中的任何人都有另一種方式來製作標籤作爲圖片(背景),並幫助新手做到這一點? :d
引發的異常:
Error 1 'System.Windows.Controls.Image' does not contain a definition for 'FromFile.
什麼的代碼是(的winform,WPF,Silverlight的)什麼樣的標籤?你想做什麼,除了「不工作」之外還有什麼問題? – xing
嗯,它沒有用,因爲.NET中有不同的Image類。您已嘗試使用System.Windows.Controls.Image上的System.Drawing.Image的方法。我對Windows Forms一無所知,但請看http://msdn.microsoft.com/en-gb/library/gg145045.aspx - 這是關於API的最佳知識來源。 –
這是wpf標籤。我正在做21遊戲(二十一點),我必須將標籤製作爲卡片圖片。我試圖創建Image類,但FromFile不起作用。 – herblack