0

私の WPF アプリケーション コードは、.cs ファイルで定義された関数呼び出しでパネルを生成します。これらの Panel を生成するためにコードで使用される ItemControl があります。ボタンを使用して、選択したパネルで定義されたテキストボックスのテキストのテキスト配置を変更したい。クエリ: ボタンをクリックすると、選択パネルの TextBox の配置が左から右に変更され、右から左に変更されます。移動するスライダーを選択すると、配置セットの実装が実装されます。コードは次のとおりです。

XAML ファイル

<ItemsControl x:Name="lstItemsClassM">
  <ItemsControl.ItemTemplate>
    <DataTemplate>
      <StackPanel Orientation="Vertical">
        <Button Content="{Binding Alignment, Mode=TwoWay}"
                Click="Button_Click"
                Tag="{Binding PKId}" />
        <TextBox x:Name="txtText"
                 Width="300"
                 Height="100"
                 Text="{Binding Text, Mode=TwoWay}"
                 FontSize="{Binding FontSize, Mode=OneWay}"
                 TextAlignment="{Binding Alignment, Mode=OneWay}" />
        <Slider Minimum="10"
                Maximum="30"
                Value="{Binding FontSize, Mode=TwoWay}" />
      </StackPanel>
    </DataTemplate>
  </ItemsControl.ItemTemplate>

.CS ファイル

 protected ObservableCollection<ClassM> texts = new ObservableCollection<ClassM>();
    int dv;
    public Window2()
    {
        InitializeComponent();
        dv=1;
        texts.Add(new ClassM() { PKId=dv, Text = "Test 1" });
        dv=2;
        texts.Add(new ClassM() { PKId=dv, Text = "Test 2" });

        lstItemsClassM.ItemsSource = texts;
    }

    private void Button_Click(object sender, RoutedEventArgs e)
    {
        var myValue = ((Button)sender).Tag;
           foreach (var f in texts.ToList())
            {
                if (f.PKId.ToString() == myValue.ToString())
                {
                    f._alignment = "Right";
                    MessageBox.Show(f._alignment);
                }
            }
    }    
}


public class ClassM : INotifyPropertyChanged
{
    private string _id;
    private int _pkid;
    private string _text;
    private double _fontSize = 10;
    public string _alignment="Left";

    public int PKId
    {
        get { return _pkid; }
        set
        {
            if (value != _pkid)
            {
                _pkid = value;
                NotifyPropertyChanged();
            }
        }
    }
    public string Id
    {
        get { return _id; }
        set
        {
            if (value != _id)
            {
                _id = value;
                NotifyPropertyChanged();
            }
        }
    }
    public string Text
    {
        get { return _text; }
        set
        {
            if (value != _text)
            {
                _text = value;
                NotifyPropertyChanged();
            }
        }
    }
    public double FontSize
    {
        get { return _fontSize; }
        set
        {
            if (value != _fontSize)
            {
                _fontSize = value;
                NotifyPropertyChanged();
            }
        }
    }
    public string Alignment
    {
        get { return _alignment; }
        set
        {
            if (value != _alignment)
            {
                _alignment = value;
                NotifyPropertyChanged();
            }
        }
    }

    public event PropertyChangedEventHandler PropertyChanged;

    protected void NotifyPropertyChanged(String propertyName = "")
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
        }
    }
}

}

整列とは、Textbox.Text 整列left to rightまたはright to left

4

1 に答える 1

-2

最善の解決策は、RichTextBox を使用してテキストを揃えることです。必要に応じて、リテラル文字列とフォーマットを読み取る実装を 1 つ提案できます。

于 2013-10-04T19:47:38.740 に答える