예제 #1
0
            public ThreadRow AddThreadRow(string Title, string Text, string Author, string Email, string UserId, ThreadRow parentThreadRowByThreadThread, System.DateTime DateTime)
            {
                ThreadRow rowThreadRow = ((ThreadRow)(this.NewRow()));

                rowThreadRow.ItemArray = new object[] {
                    Title,
                    Text,
                    Author,
                    Email,
                    UserId,
                    null,
                    parentThreadRowByThreadThread[5],
                    DateTime
                };
                this.Rows.Add(rowThreadRow);
                return(rowThreadRow);
            }
예제 #2
0
 public ThreadRowChangeEvent(ThreadRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveThreadRow(ThreadRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddThreadRow(ThreadRow row)
 {
     this.Rows.Add(row);
 }
예제 #5
0
 public ThreadRowChangeEvent(ThreadRow row, DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
예제 #6
0
 public void RemoveThreadRow(ThreadRow row) {
     this.Rows.Remove(row);
 }
예제 #7
0
 public ThreadRow AddThreadRow(string Title, string Text, string Author, string Email, string UserId, ThreadRow parentThreadRowByThreadThread, System.DateTime DateTime) {
     ThreadRow rowThreadRow = ((ThreadRow)(this.NewRow()));
     rowThreadRow.ItemArray = new object[] {
             Title,
             Text,
             Author,
             Email,
             UserId,
             null,
             parentThreadRowByThreadThread[5],
             DateTime};
     this.Rows.Add(rowThreadRow);
     return rowThreadRow;
 }
예제 #8
0
 public void AddThreadRow(ThreadRow row) {
     this.Rows.Add(row);
 }