1
Answer

C# project to WPF?

John Yang

John Yang

15y
4.8k
1

Hi all, this is my first post here so forgive me if I break some forum rules. I am sure this question has come up before but I couldn't find any articles on it.
I have a project that was developed in MFC but will now be using C# for the UI and C++ Interop for the backend. What I want to know is if I developed the UI in C# and then later want to use WPF for the UI. Would I have to re-write the UI app in WPF or is it possible to convert the C# UI app to use the WPF framework?
Thanks in advance.
John
Answers (1)
0
Amit Dhania

Amit Dhania

NA 659 164.6k 16y

We can put fields on report dynamically. For it we have to put formula-fields on report on design time.
We can put fields value from database in formula-fields in our c# coding.

For example AttendenceReport is crystal report having formula-field "status".

 AttendenceReport objAttendenceReport=new AttendenceReport();
//{AttendenceTable.Status} values coming from //database                               objAttendenceReport.DataDefinition.FormulaFields["Status"].Text = "{AttendenceTable.Status}";