2016-01-21 169 views
-1

我正在開發Windows Phone應用程序不Silverlight只是基本的應用程序。 有沒有什麼辦法讓我的應用程序的按鈕看起來像瓷磚。這意味着我需要在頁面內爲我的按鈕添加拼貼。 我想要做類似於thisWindows phone 8.1按鈕造型

但是我收到了錯誤,例如當我將此代碼放在頁面上時標記的行中出現「缺省名稱空間未定義」。

*<Style x:Key="TileListBoxItemStyle" TargetType="ListBoxItem">* 
    <Setter Property="HorizontalContentAlignment" Value="Stretch"/> 
    <Setter Property="VerticalContentAlignment" Value="Stretch"/> 
    <Setter Property="Padding" Value="0"/> 
    <Setter Property="FontSize" Value="64"/> 
    <Setter Property="Margin" Value="12,12,0,0"/> 
    <Setter Property="Background" Value="{StaticResource PhoneAccentBrush}"/> 
    <Setter Property="Foreground" Value="White"/> 
    <Setter Property="Width" Value="173"/> 
    <Setter Property="Height" Value="173"/> 
    <Setter Property="HorizontalAlignment" Value="Left"/> 
    <Setter Property="Template"> 
     <Setter.Value> 
      <ControlTemplate TargetType="ListBoxItem"> 
       <Grid> 
        <Rectangle Fill="{TemplateBinding Background}"/> 
        <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/> 
       </Grid> 
      </ControlTemplate> 
     </Setter.Value> 
    </Setter> 
</Style> 
+0

不是你的問題清楚的。請澄清你確切需要什麼。 – asitis

+0

在您定義的模板中使用圖像控制並嘗試使用 – ifaminsi

+0

您可以詳細闡述一下這個..我需要做什麼準確的.. – Vinita

回答

0

在您提供的鏈接上,BBC應用程序正在使用HubTiles並附加onClick事件處理程序,以使它們看起來像按鈕一樣。

請從Telerik的東西或使用HubTile,你會取得同樣的相同的結果BBC應用

+0

好吧..我會盡力。 – Vinita