- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将 TiltEffect.IsTiltEnabled
属性添加到我的 HubTile
:
<toolkit:HubTile toolkit:TiltEffect.IsTiltEnabled="True" Title="title" Message="This is message" x:Name="name" DisplayNotification="False" Source="pB.png" Tap="tap" />
我还在页面构造函数中的 TiltableItems
集合中添加了 HubTile
类型,根据:
public HubPage()
{
TiltEffect.TiltableItems.Add(typeof(HubtTile));
}
但是 HubTile 没有倾斜效果....
谢谢!
最佳答案
尝试将您的 HubTile
添加为 HyperLinkButton
或支持 TiltEffect
的 Button
的内容
将 Style
添加到 PhoneApplicationPage.Resources
,它适用于 Button
和 HyperLinkButton
,它增加了对其他控件的支持作为内容
<phone:PhoneApplicationPage.Resources>
<Style x:Key="EmptyButtonStyle" TargetType="primitives:ButtonBase">
<Setter Property="Background" Value="Transparent" />
<Setter Property="Padding" Value="0" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="primitives:ButtonBase">
<Border Background="{TemplateBinding Background}" Padding="{TemplateBinding Padding}">
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" Content="{TemplateBinding Content}" ContentTemplate="{TemplateBinding ContentTemplate}"/>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</phone:PhoneApplicationPage.Resources>
还将原语命名空间添加到页面
xmlns:primitives="clr-namespace:System.Windows.Controls.Primitives;assembly=System.Windows"
然后将您的HubTile
用作HyperLinkButtons
(或Button
)的Content
,如下所示
<HyperlinkButton Style="{StaticResource EmptyButtonStyle}">
<toolkit:HubTile toolkit:TiltEffect.IsTiltEnabled="True" Title="title" Message="This is message" x:Name="name" DisplayNotification="False" Source="pB.png" Tap="tap" />
</HyperlinkButton>
这将最终支持 TiltEffect
和 HubTile
关于windows-phone-7.1 - HubTile 的倾斜效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7587613/
我想在 Windows Phone 7 应用程序中的单个磁贴中显示两个字段。1)姓名2)描述像静态图片一样,tile 应该显示名称和描述 为了显示它们,我不希望在图 block 中有任何动画效果。是否
我将 TiltEffect.IsTiltEnabled 属性添加到我的 HubTile: 我还在页面构造函数中的 TiltableItems 集合中添加了 HubTile 类型,根据: public
在我的 Windows Phone 8 应用程序中,我使用的是 HubTile 控件。有什么办法可以改变 HubTile 的旋转速度吗? 最佳答案 如果您指的是 Windows Phone 的 Sil
我是一名优秀的程序员,十分优秀!