0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Bindingでxamlに値を反映させる

Last updated at Posted at 2020-01-17
MainWindow.xaml
<Grid>
    <StackPanel Orientation="Vertical" Width="300" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="20, 0, 0, 0">

        <!--Bottunクリックすると表示-->
        <TextBlock Text="{Binding PId}"/>
        <!--今日の日付-->
        <TextBlock Text ="{Binding dayTime, StringFormat={}{0:yyyy年MM月dd日}}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
        
        <!--IDを取得するテキストボックス-->
        <StackPanel Orientation="Horizontal" Margin="0, 0, 0, 15" >
            <!--Machinesクラスを指定-->
            <ListBox ItemsSource="{Binding Machines}">
                <!--1行ずつをどうやって描画するか定義-->
                <ItemsControl.ItemTemplate>
                    <!--おまじない-->
                    <DataTemplate>
                        <!--2行以上表示させる場合はStackPanelで囲む-->
                        <StackPanel Orientation="Horizontal">
                            <TextBlock Text="{Binding Id,StringFormat={}{0:N2}}"/>
                            <TextBlock Text=" "/>
                            <TextBlock Text="{Binding Name,StringFormat=Nameは{0:N0}です}"/>
                        </StackPanel>
                    </DataTemplate>
                </ItemsControl.ItemTemplate>
            </ListBox>
        </StackPanel>

        <!--検索ボタン-->
        <Button Click="Button_Click" Height="30" Content="検索" Margin="0, 20, 0, 0" Background="AliceBlue"></Button>

    </StackPanel>
</Grid>
MainWindow.xaml.cs

public partial class MainWindow : Window
{
    public static string Message = "メッセージ";

    //今日の日付
    public static DateTime? collectStartDate = DateTime.Today;

    ///<summary>
    /// VMクラスを定義する
    ///</summary>
    MainVM myVM = new MainVM();

    //コンストラクタ
    public MainWindow()
    {
        InitializeComponent();

        //VMクラスをxaml側に反映させる
        DataContext = myVM;
    }

    ///<summary>
    /// 検索ボタンを押下したとき発火
    ///</summary>
    private void Button_Click(object sender, RoutedEventArgs e)
    {
        myVM.PId = Message;
        myVM.dayTime = collectStartDate;
    }

}


//VMクラスを定義
public class MainVM : INotifyPropertyChanged
{
    /*MachineクラスのインスタンスをObservableCollectionで定義*/
    private ObservableCollection<Machine> _Machines = new ObservableCollection<Machine>()
    {
        new Machine(){Id=1111, Name="aaa"},
        new Machine(){Id=2222, Name="bbb"}
    };
    /*セッターゲッターを定義*/
    public ObservableCollection<Machine> Machines
    {
        get => _Machines;
        set
        {
            _Machines = value;
            PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(Machines)));
        }
    }

    //ID
    private string _PId;
    public string PId
    {
        get => _PId;
        set
        {
            _PId = value;
            SetProperty(nameof(PId));
        }
    }

    //日付
    private DateTime? _dayTime;
    public DateTime? dayTime
    {
        get => _dayTime;
        set
        {
            _dayTime = value;
            SetProperty(nameof(dayTime));
        }
    }

    //変更通知
    public void SetProperty(string PropertyName)
    {
        var e = new PropertyChangedEventArgs(PropertyName);
        PropertyChanged?.Invoke(this, e);
    }

    //INotifyPropertyChangedに定義されているイベント
    public event PropertyChangedEventHandler PropertyChanged;
}

public class Machine
{
    public int Id { get; set; }
    public string Name { get; set; }
}
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?