I've recently migrated my application to support iOS7 and during that process updated my app icons to use an Asset Catalog; which is all working great in the app. However, in Organizer—and TestFlight—my app icon is missing.
The same is also happening in TestFlight—which implies there is something missing from my bundle. Any help would be gratefully received.
有人对如何在 Silverlight 2 中证明只读文本(呈现为)有任何建议吗?TextBlock
WPF 通过枚举支持文本对齐TextAlignment
:
public enum TextAlignment
{
Left,
Right,
Center,
Justify // <--- Missing from Silverlight :(
}
Run Code Online (Sandbox Code Playgroud)
但是,Silverlight 2 仅支持以下内容:
public enum TextAlignment
{
Center,
Left,
Right
}
Run Code Online (Sandbox Code Playgroud)
如有任何想法或建议,我们深表感谢。