GirdViewでは、一部の列のテキストを右揃えにする必要があります。そのために、TextBlockを含むDataTemplateを作成します。
Binding bd = new Binding("path");
FrameworkElementFactory tbContent = new FrameworkElementFactory(typeof(TextBlock));
tbContent.SetBinding(TextBlock.TextProperty, bd);
tbContent.SetValue(TextBlock.TextAlignmentProperty, TextAlignment.Right);
DataTemplate dataTemplate = new DataTemplate();
dataTemplate.VisualTree = tbContent;
myGridViewColumn.CellTemplate = dataTemplate;
他のクラスでは、GridViewColumnsのバインディングにアクセスする必要があります。この列のバインディングにアクセスするにはどうすればよいですか?