-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>
不是你的問題清楚的。請澄清你確切需要什麼。 – asitis
在您定義的模板中使用圖像控制並嘗試使用 – ifaminsi
您可以詳細闡述一下這個..我需要做什麼準確的.. – Vinita