Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通常の WPF リボン レイアウトをカスタマイズしたい。以下に示すように、リボン コントロールのコマンド領域を削除したいと考えています。
これを達成する方法を提案してください。
このリンクから解決策を得ました
void ribbon_Loaded(object sender, RoutedEventArgs e) { Grid child = VisualTreeHelper.GetChild((DependencyObject)sender, 0) as Grid; if (child != null) { child.RowDefinitions[0].Height = new GridLength(0); } }