ライブ タイルの背面に表示するために、Windows Phone 8 のバックグラウンド エージェントでカスタム イメージを作成しています。小さな問題が発生しました。テキストの折り返しが機能しません。
最初にキャンバスを作成し、次にテキストブロックを保持します。間にスタックパネルを入れようとしましたが、うまくいきませんでした。TextWrapping を Wrap に設定し、すべての要素に (最大) 高さと (最大) 幅を設定しましたが、うまくいきませんでした。また、トリミングをなしに設定してみました。
コードは次のとおりです。
private void UpdateAppTile(string message, int stuntCount)
{
System.Threading.ManualResetEvent mre = new System.Threading.ManualResetEvent(false);
Deployment.Current.Dispatcher.BeginInvoke(() =>
{
var can = new Canvas();
can.Background = new SolidColorBrush(Color.FromArgb(255, 255, 204, 0));
can.Width = 336;
can.Height = 336;
can.MaxHeight = 336;
can.MaxWidth = 336;
TextBlock textBlock = new TextBlock();
textBlock.FontSize = 26;
textBlock.Foreground = new SolidColorBrush(Color.FromArgb(255, 51, 102, 153));
textBlock.TextWrapping = TextWrapping.Wrap;
textBlock.Padding = new Thickness(10,10,10,10);
textBlock.MaxHeight = 336;
textBlock.MaxWidth = 336;
textBlock.MaxHeight = 336;
textBlock.MaxWidth = 336;
textBlock.TextTrimming = TextTrimming.None;
textBlock.Text = message;
StackPanel stackPanel = new StackPanel();
stackPanel.MaxHeight = 336;
stackPanel.MaxWidth = 336;
stackPanel.MaxHeight = 336;
stackPanel.MaxWidth = 336;
stackPanel.Children.Add(textBlock);
can.Children.Add(stackPanel);
const string liveTilePath = "/Shared/ShellContent/live_tile.jpg";
var writeableBitmap = new WriteableBitmap(336, 336);
writeableBitmap.Render(can, null);
writeableBitmap.Invalidate();
using (
var isoFileStream = new IsolatedStorageFileStream(liveTilePath, FileMode.OpenOrCreate,
IsolatedStorageFile.GetUserStoreForApplication
()))
{
writeableBitmap.SaveJpeg(isoFileStream, 336, 336, 0, 100);
}
ShellTile appTile = ShellTile.ActiveTiles.First();
if (appTile != null)
{
FlipTileData tileData = new FlipTileData
{
BackBackgroundImage = new Uri("isostore:" + liveTilePath, UriKind.Absolute),
BackContent = "",
Title = "Set at " + DateTime.Now.ToShortTimeString()
};
tileData.Count = stuntCount;
appTile.Update(tileData);
}
});
mre.WaitOne();
NotifyComplete();
}
また、画像のレンダリング/保存が時間どおりに終了せず、タイルが古いバージョンを表示するという小さな問題もありますが、まだそれを見ています。
ありがとう !
ヨルン