我的表单上有一个DataGridView,当我运行表单时没有显示。为什么?

时间:2016-10-19 04:32:48

标签: c# winforms datagridview

我在名为panel10的面板上有一个名为statGrid的DataGridView。当我运行程序时,我使用此代码填充并访问DataGridView:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 24
    buildToolsVersion "24.0.2"

    defaultConfig {
        applicationId "xxx.Mac.xxxxxxxx"
        minSdkVersion 15
        targetSdkVersion 24
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:24.2.1'
    compile 'com.android.support:design:24.2.1'
    compile 'com.google.android.gms:play-services:9.6.1'
    compile 'com.android.support:support-v4:24.2.1'
    compile 'com.google.firebase:firebase-auth:9.6.1'
    compile 'com.google.firebase:firebase-auth:9.6.1'
    compile 'com.google.android.gms:play-services-auth:9.6.1'

}
apply plugin: 'com.google.gms.google-services'

当我运行表单,以及我到面板的代码,但没有显示DataGridView。有人可以告诉我为什么会这样吗?

感谢。

2 个答案:

答案 0 :(得分:0)

我想你错过了调用Bind()方法试试这个statGrid.Bind()

答案 1 :(得分:0)

我找到了答案。 panel10的父级不是表格。这是panel9。当我将panel10直接移动到Document Outline选项卡中的表单下时,修复了它。感谢所有帮助过的人。