MCPcopy Create free account
hub / github.com/9chu/LuaSTGPlus / listView_log_SelectedIndexChanged

Method listView_log_SelectedIndexChanged

PerformanceMonitor/MainForm.cs:282–293  ·  view source on GitHub ↗
(object sender, EventArgs e)

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected