これについての答えを確認する質問は、あなたが尋ねていることがこのようにして行えるため、参考になるかもしれません。
UPDATE:
In that case you'll have to do it using C# code as follows:
1- Add the date to a textblock:
TextBlock t = new TextBlock();
t.Text = _Date_;
t.Width = 100; //set width you want to make all date entires have the same width
2-番号を別のテキストブロックに追加する:
TextBlock n = new TextBlock();
n.Text = _number_;
n.Width = 50; //set width you want to make all date entires have the same width
3両方をスタックパネルに追加します:
StackPanel st = new StackPanel();
st.Orientation = System.Windows.Controls.Orientation.Horizontal;
st.Children.Add(t);
st.Children.Add(n);
4-スタックをリストボックスに追加する:
listBox1.Children.Add(st);
追加したい要素ごとにこれを繰り返す必要があります。