public ModelInfoPanel() { InitializeComponent(); this.OnPlayButtonClicked = null; this.OnInfoButtonClicked = null; this.OnMotionsListSelectionChanged = null; }
void listItem_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) { ErrorListItem item = sender as ErrorListItem; if (item != null) { OnListSelectionChanged?.Invoke(item.Node); NodesContainer.FocusNode(item.Node); } }
public ModelInfoPanel() { InitializeComponent(); this.OnPlayButtonClicked = null; this.OnInfoButtonClicked = null; this.OnMotionExportButtonClicked = null; this.OnMotionsListSelectionChanged = null; this.OnLodsListSelectionChanged = null; this.btnModelExportMotion.Enabled = false; this.lstLods.Enabled = false; }