(object sender, EventArgs e)
| 280 | } |
| 281 | |
| 282 | private void listView_log_SelectedIndexChanged(object sender, EventArgs e) |
| 283 | { |
| 284 | if (listView_log.SelectedItems.Count != 0) |
| 285 | { |
| 286 | ListViewItem tItem = listView_log.SelectedItems[0]; |
| 287 | textBox_log.Text = String.Format("{1} [{0}]:{2}", |
| 288 | tItem.SubItems[0].Text, |
| 289 | tItem.SubItems[1].Text, |
| 290 | tItem.SubItems[2].Text |
| 291 | ).Replace("\r\n", "\n").Replace("\n", "\r\n"); |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | private void listView_resources_ColumnClick(object sender, ColumnClickEventArgs e) |
| 296 | { |
nothing calls this directly
no outgoing calls
no test coverage detected