当您在市场空间上发布应用程序时,您可以通过链接http://windowsphone.com/s?appid=GUIDOfApplication访问它,该链接 重定向到市场上的应用程序页面.我知道可以直接链接到"费率和评论".那么,那个链接是什么?
如何在Windows Phone 7上安装操作系统版本号?
如果您打开wifi设置并选择任何网络,您将在ApplicationBar中看到密码文本框和按钮(不是图标).它是如何制作的?它是某种ApplicationBar模板吗?或者它是一些边框控件,但如何在SIP(键盘)上方显示边框?任何想法如何做同样的事情?
我有一个应用程序,可以在起始页面上创建辅助平铺.我需要在从该磁贴运行时调试应用程序.怎么做?
我有一个TextBlock tblControl,我想设置一个类似于xaml的绑定
Foreground="{Binding ForegroundColor}"
但在代码中.所以我使用:
var b = new Binding { Path = new PropertyPath("ForegroundColor") };
tblControl.SetBinding(TextBlock.ForegroundProperty, b);
Run Code Online (Sandbox Code Playgroud)
一切正常.
现在我想删除Binding以允许TextBlock显示默认的Foreground颜色,或者我需要设置Foreground的默认值.tblControl.SetBinding(TextBlock.ForegroundProperty, null);不管用.怎么做?