ed68b0da5c
Aggiunto bottone per copiare dati in statistiche
17 lines
412 B
VB.net
17 lines
412 B
VB.net
Public Class OptimizerStatisticsV
|
|
|
|
Private m_StatisticsVM As StatisticsVM
|
|
|
|
Sub New()
|
|
' This call is required by the designer.
|
|
InitializeComponent()
|
|
|
|
End Sub
|
|
|
|
Private Sub PrintBtn_Click(sender As Object, e As RoutedEventArgs) Handles CopyToClipboardBtn.Click
|
|
m_StatisticsVM = Me.DataContext()
|
|
ExportToExcelAndCsv(dgOptimizerStatistics, m_StatisticsVM)
|
|
End Sub
|
|
|
|
End Class
|