C#Windows Phone 8.1应用程序中的图像映射

时间:2015-05-08 13:29:51

标签: c# xaml windows-phone-8.1

我正在使用C#和XAML制作Windows Phone 8.1应用程序,我想实现一个Image map。 我知道如何使用clf = SGDClassifier(loss="log", penalty="elasticnet",n_iter=70, random_state=0) 标记img属性在HTML中执行此操作,但是如何使用C#和XAML?

1 个答案:

答案 0 :(得分:0)

你想做这样的事情:

<Canvas xmlns="http://schemas.microsoft.com/client/2007"     
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
   Width="500" Height="500">
   <Canvas.Background>
    <ImageBrush ImageSource="yourBackgroundImage.jpg" Stretch="Fill"/>
  </Canvas.Background>

  <Rectangle Width="50" Height="25" Canvas.Top="100" Canvas.Left="100" />
  <Rectangle Width="100" Height="20" Canvas.Top="200" Canvas.Left="300" />
  <!-- etc -->
</Canvas>

带有背景图片的Canvas与您的<img>类似,Rectangle元素集与您<area>内的<map>代码相似。您可以为Rectangle添加事件,例如Tap,您可以为他们提供Fill属性以使其成为特定颜色等。