Below idea how to be realized in C#?
-
The system is deployed on the user PC,as the usual time it runs under the user mode,once I click some menu(or button), the system runs under the developing mode, at this moment, the programmer can redesign the system, for example, add some buttons on the winform, and encode the code and recomplie it. Could you please give me some suggestion or some codes for it? Many thanks
-
The system is deployed on the user PC,as the usual time it runs under the user mode,once I click some menu(or button), the system runs under the developing mode, at this moment, the programmer can redesign the system, for example, add some buttons on the winform, and encode the code and recomplie it. Could you please give me some suggestion or some codes for it? Many thanks
-
yes, I want to it can be redesigned the UI without the VS.net envirnment. Do you have any idea about it ?thanks!
-
yes, I want to it can be redesigned the UI without the VS.net envirnment. Do you have any idea about it ?thanks!
You need to define your own format to create UI elements, and to define what they do, then write a program which can read that format, and one that writes it. You may use an xml document, for example. It's far from trivial. Creating UI is easy enough, especially if you limit it to a few types of elements, the question is, how do you define what the UI elements actually DO ?
Christian Graus Driven to the arms of OSX by Vista. Please read this[^] if you don't like the answer I gave to your question.
-
You need to define your own format to create UI elements, and to define what they do, then write a program which can read that format, and one that writes it. You may use an xml document, for example. It's far from trivial. Creating UI is easy enough, especially if you limit it to a few types of elements, the question is, how do you define what the UI elements actually DO ?
Christian Graus Driven to the arms of OSX by Vista. Please read this[^] if you don't like the answer I gave to your question.
Christian Graus,Thanks for your kind help,If you know some simple examples for reference,I am very grateful!
-
Christian Graus,Thanks for your kind help,If you know some simple examples for reference,I am very grateful!
Have a read through the articles on Marc Clifton's blog[^] (or here in Code Project), paying particular attention to his articles on Declarative Programming.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
-
yes, I want to it can be redesigned the UI without the VS.net envirnment. Do you have any idea about it ?thanks!
If your users are WPF-tolerant, then you can use the XamlReader[^] class like they did in this thread on the MSDN forums
Between the idea And the reality Between the motion And the act Falls the Shadow
-
If your users are WPF-tolerant, then you can use the XamlReader[^] class like they did in this thread on the MSDN forums
Between the idea And the reality Between the motion And the act Falls the Shadow
oh,thanks