標籤:style io os 使用 ar for 資料 sp art
1、 為什麼textblock在進行資料繫結時,設定它的AllowDrop="True"屬性 會發生異常?
2、再為listbox進行資料繫結時,手機方向為豎向時內容能完全顯示,但是當手機橫向顯示時內容無法完全顯示?
解決辦法是:把listbox的height屬性刪掉即可。
3、 MediaLibrary類可以擷取媒體庫中的圖片和音樂。
MediaLibrary library = new MediaLibrary();
4、 關於MediaPlayer.Play();方法的問題 :
public partial class ExamplePanoramaPage1 : PhoneApplicationPage
{
static MediaLibrary lib = new MediaLibrary();
SongCollection sc = lib.Songs;
public ExamplePanoramaPage1()
{
InitializeComponent();
}
private void LayoutRoot_Loaded(object sender, RoutedEventArgs e)
{
ObservableCollection<MusicModel> lst = new ObservableCollection<MusicModel>();
for (int i = 0; i < sc.Count; i++)
{
lst.Add(new MusicModel()
{
MusicName = sc[i].Name,
Auther = sc[i].Artist.Name,
MusicPath = sc[i].TrackNumber
});
}
this.lstLirics.ItemsSource = lst;
}
private void lstLirics_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
MediaPlayer.Pause();
FrameworkDispatcher.Update(); //為什麼不調用此方法時會報錯?
MediaPlayer.Play(sc, lstLirics.SelectedIndex);
}
}
5、 SoundEffect 類播放聲音:
string path = "sound/knock.wav";//生產操作為“內容”
var soundStream= Application.GetResourceStream(new Uri(path, UriKind.RelativeOrAbsolute));
SoundEffect se = SoundEffect.FromStream(soundStream.Stream);
FrameworkDispatcher.Update();//為什麼非要添加這一句?不明白。
se.Play();
6、 隱藏頂端的系統托盤,必須使用this.SetValue()方法設定,不能直接對他IsVisibleProperty賦值
this.SetValue(Microsoft.Phone.Shell.SystemTray.IsVisibleProperty, false);//!(bool)this.GetValue(Microsoft.Phone.Shell.SystemTray.IsVisibleProperty)
Windows Phone 7 問題總結