I am a C++ developer and recently shifted to the world of WPF C#. I am developing an app where I have to load a textfile by using a fileopendialog, select the file and save it in combobox then on clicking writebutton I should perform some operations using the data present in the textfile.
I had done it in C++ as follows:
if(button == m_writeButton)
{
// get the data from the file
File m_binFile = m_fileChoice->getCurrentFile();
MemoryBlock m_data;
m_binFile.loadFileAsData(m_data);
size_t blockSize = m_data.getSize();
unsigned char *f_buffer;
f_buffer = (unsigned char *)m_data.getData();
unsigned cnt = 0;
// Some code
}
I did it in C# as follows:
<ComboBox Name="WriteFileCombo" >
<ComboBoxItem Content="Firmware To Download" />
<ComboBoxItem Content="{Binding FirmwarePath}" />
</ComboBox>
<Button Content="..." Command="{Binding Path=WriteFilePathCommand}" Name="FileDialogBtn"/>
<Button Content="Write File" Command="{Binding Path=WriteFileCommand}" Name="WriteFileBtn" />
View Model class:
private string _selectedFirmware;
public string FirmwarePath
{
get { return _selectedFirmware; }
set
{
_selectedFirmware = value;
OnPropertyChanged("FirmwarePath");
}
}
// Gets called when Browse Button (...) is clicked
private void ExecuteWriteFileDialog()
{
var dialog = new OpenFileDialog { InitialDirectory = _defaultPath };
dialog.DefaultExt = ".txt";
dialog.Filter = "TXT Files (*.txt)|*.txt";
dialog.ShowDialog();
FirmwarePath = dialog.FileName;
WriteFileCommandExecuted();
}
// Gets called when Write Button is clicked
public void WriteFileCommandExecuted()
{
// same logic as in c++
}
How do I perform the same operation which is done in C++ code in my WriteFileCommandExecuted() method?
Please help :)