3

ユーザーがまだ値を指定していない場合、問題のあるコンボボックスにテキストを表示する ValidationRule を取得しようとしています。表示することはできますが、TextTrimming="CharacterEllipsis" を使用してテキストをコンボボックスのサイズに合わせることができないようです。TextBlock をコンボボックスに合わせて取得し、ユーザーがウィンドウのサイズを変更した場合にそれ自体を修正するにはどうすればよいですか?

ここに私の MainWindow.xaml があります:

<Window x:Class="PocAdornedElementPlaceholder.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:PocAdornedElementPlaceholder"
        Title="MainWindow" Height="200" Width="150">
    <Window.Resources>
        <ControlTemplate x:Key="ValidationTemplate">
            <Grid HorizontalAlignment="Center">
                <AdornedElementPlaceholder/>
                <TextBlock Foreground="Red" 
                           TextTrimming="CharacterEllipsis" 
                           Text="{Binding ErrorContent}" 
                           IsHitTestVisible="False" 
                           VerticalAlignment="Center" 
                           Margin="5,0,0,0"/>
            </Grid>
        </ControlTemplate>
    </Window.Resources>
    <Grid>
        <ComboBox Margin="10" 
                  Validation.ErrorTemplate="{StaticResource ValidationTemplate}"  
                  VerticalAlignment="Center"  
                  ItemsSource="{Binding Options}">
            <ComboBox.Text>
                <Binding Path="SelectedValue">
                    <Binding.ValidationRules>
                        <local:MyValidationRule ValidatesOnTargetUpdated="True" />
                    </Binding.ValidationRules>
                </Binding>
            </ComboBox.Text>
        </ComboBox>
    </Grid>
</Window>

ここに私の MainWindow.xaml.cs があります:

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        Options = new List<string>() { "Value 1", "Value 2", "Value 3", "" };
        this.DataContext = this;
    }

    public string SelectedValue { get; set; }
    public List<string> Options { get; set; }
}

そして、これが私の MyValidationRule.cs ファイルです。

public class MyValidationRule : ValidationRule
{
    public override ValidationResult Validate(object value, CultureInfo cultureInfo)
    {
        if (string.IsNullOrEmpty((string)value))
            return new ValidationResult(false, "Value cannot be empty!");
        return new ValidationResult(true, null);
    }
}

どんな助けでも大歓迎です!ありがとう、タム

4

1 に答える 1

1

以下を試してください。TextBlockは装飾者のコンテンツである必要があります。ドロップダウン矢印ボタンをカウントするために、テキストブロックのマージンも変更する必要がありました。

<ControlTemplate x:Key="ValidationTemplate">
    <Grid HorizontalAlignment="Center">
        <AdornedElementPlaceholder>
            <TextBlock Foreground="Red" TextTrimming="CharacterEllipsis" Text="{Binding ErrorContent}" IsHitTestVisible="False" VerticalAlignment="Center" Margin="5,0,20,0" />
        </AdornedElementPlaceholder>
    </Grid>
</ControlTemplate>
于 2011-08-10T21:36:18.130 に答える