wp7資源呼叫

2022-06-22 02:30:14 字數 2524 閱讀 8539

有乙個朋友問過我這樣乙個問題,他在應用程式中呼叫卻不顯示。下面介紹一下資源之間的呼叫以及關係。

專案的結構,在images的資料夾裡有兩張。

flash的生成操作為resource,ps的生成操作為內容。

編譯打包之後生成的結構如下圖。

images資料夾裡面只有ps,因為ps的生成操作為內容。

程式中的其他資源在resdemo.dll中。

頁面檔案以及生成操作為resource的flash都都打包到resdemo.dll中了,結構如上圖。

下面我們就開始呼叫

6張,左邊豎著數分別為image1、image2、image3。右邊豎著數分別為image4、image5、image6。

布局**如下:

1:  

"contentpanel" margin="12,0,12,0">

2:  

"200" horizontalalignment="left" margin="9,21,0,0" name="image1" stretch="fill" verticalalignment="top" width="200" source="/resdemo;component/images/flash.png" />

3:  

"200" horizontalalignment="left" margin="9,247,0,0" name="image2" stretch="fill" verticalalignment="top" width="200" source="images/flash.png" />

4:  

"200" horizontalalignment="left" margin="9,482,0,0" name="image3" stretch="fill" verticalalignment="top" width="200" source="/images/ps.png" />

5:  

"200" horizontalalignment="left" margin="231,21,0,0" name="image4" stretch="fill" verticalalignment="top" width="200" />

6:  

"200" horizontalalignment="left" margin="231,247,0,0" name="image5" stretch="fill" verticalalignment="top" width="200" />

7:  

"200" horizontalalignment="left" margin="231,482,0,0" name="image6" stretch="fill" verticalalignment="top" width="200" />

8:

image1通過"/resdemo;component/images/flash.png"訪問resource資源的flash。

因為xaml頁面也是resource,所以也可以通過相對路徑images/flash.png來呼叫flash。

ps是內容,所以以檔案形式存放在resdemo.dll,用"/images/ps.png呼叫。

下面三個為後台**賦值。(路徑跟xaml頁面一樣)

1:   image4.source = new bitmapimage(new uri("/resdemo;component/images/flash.png", urikind.relativeorabsolute));
2:   image5.source = new bitmapimage(new uri("images/flash.png", urikind.relativeorabsolute));
3:   image6.source = new bitmapimage(new uri("/images/ps.png", urikind.relativeorabsolute));

WP7 開發(五) wp7控制項開發(二)

1 passwordbox 用於輸入自定義遮罩字元的密碼框控制項,屬性passwordchar用來顯示輸入的密碼替換符號 2 textbox 可以讓軟鍵盤產生不同的鍵面效果 inputscope屬性可通過 獲取屬性列表 typeof inputscopenamevalue getfields bin...

wp7遊戲 wp7 競賽類遊戲 集合貼

wp7遊戲 極品飛車14 熱力追蹤 1.2 wp7遊戲 驚險火箭車 1.0 wp7遊戲 雷霆快艇 1.4 遊戲 極品飛車之臥底 v1.0.0.0 wp7遊戲 速度與激情 1.1.0.0 wp7遊戲 野蠻狂飆 1.0 wp7遊戲 全民卡踏車 1.0 wp7遊戲 瘋狂賽車 1.0.0.0 wp7遊戲 極...

WP7中資源和樣式

wp7中中的資源概念比較泛化,我們這裡說的資源主要是控制項內同質化的屬性 比如要對很多控制項設定相同的顏色,字型大小,畫刷等等屬性,如果每個控制項單獨設定會有大量重複的工作,使用資源可以解決這個重複的問題,也相當於html中的css的style樣式。但是在style的之前還有乙個先決條件就是共享機制...