2013-07-30 80 views
1

基本上我的要求是使用WPF刪除DevExpressGridControl中的多餘列。我有一個GridControl其中包含三列,而GridControl顯示三列完美GridContol區域的其餘部分顯示爲額外列。我想刪除額外的列,那麼有沒有解決方案?如何使用WPF刪除DevExpress GridControl中的額外列?

enter image description here 任何幫助表示讚賞!

回答

0

使用TableView.AutoWidth屬性:

<dxg:GridControl> 
    <dxg:GridControl.Columns> 
     <dxg:GridColumn FieldName="ID"/> 
     <dxg:GridColumn FieldName="Name"/> 
     <dxg:GridColumn FieldName="Age"/> 
    </dxg:GridControl.Columns> 
    <dxg:GridControl.View> 
     <dxg:TableView AutoWidth="True"/> 
    </dxg:GridControl.View> 
</dxg:GridControl> 

相關求助文章:Columns Layout and Width

+0

它會工作,但我得到了一個新的問題,將設置的ContentAlignment右對齊。 –

+0

@EzraHeywood對齊問題截圖? – DmitryG

+0

好thnx我解決了它。 你很想解決我的問題! –

相關問題