c# - How To Debug WPF DataGrid Appearance Differences In Deployment? -
i have created wpf application uses many datagrid controls on different tabs in user interface. applied date format selected date columns code:
ocolumn.binding.stringformat = "mm/dd/yyyy";
i set columns hidden code:
ocolumn.visibility = system.windows.visibility.hidden;
those both work on machine running both in visual studio , exe. however, gave copy of exe else in company here running on different machine. date columns not formatted correctly , hidden columns visible on machine. of columns don't sort when clicks header, sort correctly on machine.
we tried solve creating setup project , including .net 4.5 in setup. ran setup , problems continued unchanged. tried setting compatibility mode windows 7 on machine , problems continued unchanged. can suggest how correct in production user see datagrid columns correctly formatted , sorting?
Comments
Post a Comment