2011-08-13 22 views
0

我正在使用TagVisualization,它在名稱標籤周圍顯示一個橢圓。我想在橢圓上的圓周(精確定義的點)上放置2個圓形按鈕,以便點擊它們會導致某些標籤文本的更改。我無法這樣做,因爲我無法將s:Contacts.ContactDown屬性添加到較小的橢圓。向TagVisualization添加Contacts.contactdown

下面是XAML:

<s:TagVisualization x:Class="ControlsBox.TagVisual" 
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
xmlns:s="http://schemas.microsoft.com/surface/2008" 
Loaded="TagVisual_Loaded"> 
<Canvas> 

    <Ellipse Width="300" Height="300" Stroke="White" StrokeThickness="8" Opacity="0.7"> 
     <Ellipse.Effect> 
      <BlurEffect Radius="12" /> 
     </Ellipse.Effect> 
    </Ellipse> 
    <Ellipse Height="296" Width="296" Stroke="AntiqueWhite" StrokeThickness="4" > 
     <Ellipse.Effect> 
      <BlurEffect Radius="4"/> 
     </Ellipse.Effect> 
    </Ellipse> 
    <Label Content="John's Phone" HorizontalContentAlignment="Center" Padding="0,250,0,0" VerticalContentAlignment="Bottom" IsHitTestVisible="false"> 
     <Label.Effect> 
      <DropShadowEffect BlurRadius="9" ShadowDepth="0" Color="Aqua"/> 
     </Label.Effect> 
    </Label> 

    <Ellipse Height="40" Width="40" Stroke="White" StrokeThickness="4" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="0,70,0,0" Fill="Black" 
     s:Contacts.ContactDown="UNABLE_TO_ADD" /> 
</Canvas> 

+0

你將不得不問一個更好的問題......是否有錯誤?它說什麼?你看到哪種行爲與你的期望不同? –

回答

0

做谷歌搜索位後,出現在使用Expression Blend中與風格創建按鈕是更容易的選擇。