tmytのらくがき

個人の日記レベルです

SystemTrayクラスのプロパティがいっぱい増えていた

オブジェクトブラウザでふとSystemTrayクラスを眺めていたらWP7.0比でぷろぱてがやまほど増えていた。山ほどといっても4つだけど。
増えている4つのうち、1つはProgressIndicator用のプロパティなので実質3つ。せっかくなので使ってみた。

XAMLをこんな感じに指定。

<phone:PhoneApplicationPage 
    x:Class="PanoramaApp1.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
    xmlns:controls="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
    mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="768" 
    d:DataContext="{d:DesignData SampleData/MainViewModelSampleData.xaml}"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait"  Orientation="Portrait"
    shell:SystemTray.IsVisible="True"
    shell:SystemTray.Opacity="0.5"
    shell:SystemTray.BackgroundColor="White"
    shell:SystemTray.ForegroundColor="Red">
</phone:PhoneApplicationPage>

これを実行するとこんな感じに。

Opacityを0にするとつつくとアイコン出てくるけれどシステムのバー背景色は描画されないとかもできました。システムのアイコン色もアプリケーションの世界観と統一できるようになっていい感じですね。