1

私は wpf での作業が初めてで、現在次のことをしようとしています: TextBlock を含む単純な ContenctControl (CtrpushPinContent) を作成しました:

<ContentControl x:Class="CtrpushPinContent" ...
<Grid x:Name="LayoutRoot" Background="{x:Null}">
<Border BorderThickness="3" Name="border1" CornerRadius="15" BorderBrush="#FF070707" Margin="0,0,0,0">
                <Border BorderBrush="Silver" BorderThickness="3" Name="border2" CornerRadius="15" Background="#FF413E3E">
                    <TextBlock Name="textBlock1" TextAlignment="Center" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="4" Foreground="White" />
                </Border>
            </Border>
        </Grid>
</ContentControl>

cs ファイルは次のようになります。

 public partial class CtrpushPinContent : ContentControl
    {
        public static readonly DependencyProperty CaptionProperty =
           DependencyProperty.Register("Text",
                                        typeof(string),
                                        typeof(CtrpushPinContent),
                                        new PropertyMetadata(string.Empty));

        public string Text
        {
            get { return textBlock1.Text; }
            set { textBlock1.Text = value; }
        }
        public CtrpushPinContent()
        {
            InitializeComponent();
        }
    }

メインの PhoneApplicationPage で、次のことを試みます。

<phone:PhoneApplicationPage.Resources>
<Style TargetType="my:Pushpin" x:Key="PushpinStyle">
            <Setter Property="Template">
                <Setter.Value>
                    <ControlTemplate TargetType="my:Pushpin">
                        <Grid x:Name="ContentGrid">
                            <StackPanel Orientation="Vertical">
                                <Grid Background="{x:Null}" HorizontalAlignment="Right" MinHeight="31" MinWidth="29">
                                    <LJTileSources:CtrpushPinContent HorizontalAlignment="Right"  Text="{TemplateBinding Content}" Margin="4" ContentTemplate="{TemplateBinding ContentTemplate}" />
                                </Grid>
                                <Image Source="/WifiHotSpot;component/Images/blackPinNoShadow.png"  Width="54" Height="54" HorizontalAlignment="Center"></Image>
                            </StackPanel>
                        </Grid>
                        </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style>
</phone:PhoneApplicationPage.Resources>

<Grid>
      <my:Map Margin="0,1,0,0" Name="map1" LogoVisibility="Collapsed" Height="576"  CredentialsProvider="key" ZoomLevel="2">
      <my:Pushpin Style="{StaticResource PushpinStyle}" Content="Test" Location="50.0863762,14.42814" PositionOrigin="BottomLeft"></my:Pushpin>
                    </my:Map>
</Grid> 

しかし、私の解決策はうまくいきません。の効果が見られない

<my:Pushpin Style="{StaticResource PushpinStyle}" Content="Test" .../>

問題はスタイル宣言のどこかにあると思います:

 <LJTileSources:CtrpushPinContent HorizontalAlignment="Right"  Text="{TemplateBinding Content}" Margin="4" ContentTemplate="{TemplateBinding ContentTemplate}" />

なぜなら、私はそれを

<LJTileSources:CtrpushPinContent HorizontalAlignment="Right"  Text="TestText" Margin="4" ContentTemplate="{TemplateBinding ContentTemplate}" /> 

必要に応じて「TestText」を表示します。

4

1 に答える 1

0

この問題をすばやく解決するには、これを実装する必要があります。

public static readonly DependencyProperty CaptionProperty =          
     DependencyProperty.Register("Text",
                                        typeof(string),
                                        typeof(CtrpushPinContent),
                                        new PropertyMetadata(string.Empty, OnTextChanged));

        public string Text
        {
            get { return textBlock1.Text; }
            set { textBlock1.Text = value; }
        }

        private static void OnTextChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)
        {
            ((CtrpushPinContent)sender).textBlock1.Text = (string)e.NewValue;
        }

        public CtrpushPinContent()
        {
            InitializeComponent();
        }

プッシュピン テンプレートにテキストを設定する場合:

<LJTileSources:CtrpushPinContent HorizontalAlignment="Right"  Text="{TemplateBinding Content}" 
                                                                     Margin="4" ContentTemplate="{TemplateBinding ContentTemplate}" />

コントロールに Text プロパティを設定せず、依存プロパティ CaptionProperty の値を設定します。これは、「Text」という名前で登録したためです。したがって、xaml から Text を設定するときは、コントロールの Text プロパティではなく、正確に Caption プロパティを設定します。したがって、textBox1 のテキストを更新するために、この依存関係プロパティを変更するイベントを作成する必要があります。

于 2012-11-16T17:36:06.910 に答える