What Control(s) would you use to represent this MS Word "Control"?
The below is from a Word Form that I am bringing into a .Net Winforms App. I am curious as to how some of y开发者_JAVA百科ou would accomplish this. As far as I know there are not any existing controls that duplicate it's functionality, even if I remove the Total Hrs at the bottom. Am I wrong?
Secondly, I am relatively new to WPF but I get the impression that if I must create my own control it will be significantly easier in XAML form than WinForms, correct?
Thanks,
Use a DataGrid
(WPF) or DataGridView
(WinForms)
精彩评论