ATML1671Translator.forms.ATMLTranslatorToolWindow.CreatePropertyInfoTextRow C# (CSharp) Method

CreatePropertyInfoTextRow() private method

private CreatePropertyInfoTextRow ( string name, string value ) : DataGridViewRow
name string
value string
return DataGridViewRow
        private DataGridViewRow CreatePropertyInfoTextRow( string name, string value )
        {
            var r1 = new DataGridViewRow();
            DataGridViewCell cell1 = new DataGridViewTextBoxCell();
            DataGridViewCell cell2 = new DataGridViewTextBoxCell();
            cell1.Value = name;
            cell2.Value = value;
            r1.Cells.Add( cell1 );
            r1.Cells.Add( cell2 );
            return r1;
        }
ATMLTranslatorToolWindow