Microsoft Developer Network > 포럼 홈 > Windows Forms Data Controls and Databinding > DataGridView automatically adding columns I don't want !!?!
질문하기질문하기
 

답변됨DataGridView automatically adding columns I don't want !!?!

  • 2007년 5월 4일 금요일 오후 3:11JBalcerzak 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     

    Hello -

     

    I'm sure this is something simple, but I've got a databound DataGridView where I have several columns from the data source and some unbound columns like buttons and so forth.  The problem is that every time I go to make simple changes through the column editor, I see that VS 2005 has added ALL the columns from the datasource to the grid - even columns that I already had in there.  While its not a problem to remove the additional columns, I'd sure like to know if there was a way to prevent VS 2005 from doing this seemingly every time.

     

    Thanks,

     

    Jeff Balcerzak

답변

  • 2007년 5월 4일 금요일 오후 6:51timvw 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     답변됨
    Well, i just tried it:

    - The columns that where added by the designer disappear
    - The columns that you added manually remain (and if you set their datapropertyname to a property that existed on the datasource this datapropertyname remains too)

모든 응답

  • 2007년 5월 4일 금요일 오후 3:16timvw 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     
    Clear the DataSource property.. And in the constructor of your form set this.dataGridView.AutoGenerateColumns = false;
  • 2007년 5월 4일 금요일 오후 4:09JBalcerzak 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     
    If I clear my data source, won't I lose the columns I already have defined?  You'd think that auto create columns property would be visible at design time...
  • 2007년 5월 4일 금요일 오후 6:51timvw 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     답변됨
    Well, i just tried it:

    - The columns that where added by the designer disappear
    - The columns that you added manually remain (and if you set their datapropertyname to a property that existed on the datasource this datapropertyname remains too)