Translating a C# Windows Form App to Python
up vote
-1
down vote
favorite
I wrote a Windows Form Application in C# for an Account Creation/Sign Up & Sign In/ Main Menu program that I am creating for a project I’m working on to build a custom gaming console for personal use. However, after spending 3 weeks working on the project in C#, I realized that the code must be done in Python. I would happily translate the code to Python, the problem is, I don’t know the first thing about the coding language. Any ideas for how I could easily translate the program to C#? I’ll post the code if necessary.
c# python
add a comment |
up vote
-1
down vote
favorite
I wrote a Windows Form Application in C# for an Account Creation/Sign Up & Sign In/ Main Menu program that I am creating for a project I’m working on to build a custom gaming console for personal use. However, after spending 3 weeks working on the project in C#, I realized that the code must be done in Python. I would happily translate the code to Python, the problem is, I don’t know the first thing about the coding language. Any ideas for how I could easily translate the program to C#? I’ll post the code if necessary.
c# python
Convert C# to Python. However the UI technology and many other things might be different in Python. So converting just the syntax will solve the problem only partly.
– Olivier Jacot-Descombes
Nov 7 at 23:07
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
I wrote a Windows Form Application in C# for an Account Creation/Sign Up & Sign In/ Main Menu program that I am creating for a project I’m working on to build a custom gaming console for personal use. However, after spending 3 weeks working on the project in C#, I realized that the code must be done in Python. I would happily translate the code to Python, the problem is, I don’t know the first thing about the coding language. Any ideas for how I could easily translate the program to C#? I’ll post the code if necessary.
c# python
I wrote a Windows Form Application in C# for an Account Creation/Sign Up & Sign In/ Main Menu program that I am creating for a project I’m working on to build a custom gaming console for personal use. However, after spending 3 weeks working on the project in C#, I realized that the code must be done in Python. I would happily translate the code to Python, the problem is, I don’t know the first thing about the coding language. Any ideas for how I could easily translate the program to C#? I’ll post the code if necessary.
c# python
c# python
asked Nov 7 at 22:57
TheNetPlex
131
131
Convert C# to Python. However the UI technology and many other things might be different in Python. So converting just the syntax will solve the problem only partly.
– Olivier Jacot-Descombes
Nov 7 at 23:07
add a comment |
Convert C# to Python. However the UI technology and many other things might be different in Python. So converting just the syntax will solve the problem only partly.
– Olivier Jacot-Descombes
Nov 7 at 23:07
Convert C# to Python. However the UI technology and many other things might be different in Python. So converting just the syntax will solve the problem only partly.
– Olivier Jacot-Descombes
Nov 7 at 23:07
Convert C# to Python. However the UI technology and many other things might be different in Python. So converting just the syntax will solve the problem only partly.
– Olivier Jacot-Descombes
Nov 7 at 23:07
add a comment |
2 Answers
2
active
oldest
votes
up vote
2
down vote
accepted
TheNetPlex!
I don´t know if that's possible because C# and Python are completely different programming languages.
Also, because you wrote a Windows Forms Applications, it means that you didn't use WPF so it is even harder to migrate the user interface.
I would try to make the application from the scratch in python. By doing that you would avoid some kind of compatibilities or weird issues.
Hope I've been useful! Good Luck!
Yes. @TheNetPlex: If you are in the lucky position to have a good separation between business logic and UI, then you might at least be able convert your code partly.
– Olivier Jacot-Descombes
Nov 10 at 15:13
This helps, a lot, thanks! I’ll probably end up finding someone who knows Python and supplying the C# info to work together to recreate it in Python, as I don’t really have time to learn Python right now. Any idea what the closest thing to a Windows Form App is in Python?
– TheNetPlex
Nov 15 at 17:53
add a comment |
up vote
0
down vote
You could try and save your UI code by using ironpython, assuming you are using WPF. The downside is that it is only python 2.7 compatible
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
TheNetPlex!
I don´t know if that's possible because C# and Python are completely different programming languages.
Also, because you wrote a Windows Forms Applications, it means that you didn't use WPF so it is even harder to migrate the user interface.
I would try to make the application from the scratch in python. By doing that you would avoid some kind of compatibilities or weird issues.
Hope I've been useful! Good Luck!
Yes. @TheNetPlex: If you are in the lucky position to have a good separation between business logic and UI, then you might at least be able convert your code partly.
– Olivier Jacot-Descombes
Nov 10 at 15:13
This helps, a lot, thanks! I’ll probably end up finding someone who knows Python and supplying the C# info to work together to recreate it in Python, as I don’t really have time to learn Python right now. Any idea what the closest thing to a Windows Form App is in Python?
– TheNetPlex
Nov 15 at 17:53
add a comment |
up vote
2
down vote
accepted
TheNetPlex!
I don´t know if that's possible because C# and Python are completely different programming languages.
Also, because you wrote a Windows Forms Applications, it means that you didn't use WPF so it is even harder to migrate the user interface.
I would try to make the application from the scratch in python. By doing that you would avoid some kind of compatibilities or weird issues.
Hope I've been useful! Good Luck!
Yes. @TheNetPlex: If you are in the lucky position to have a good separation between business logic and UI, then you might at least be able convert your code partly.
– Olivier Jacot-Descombes
Nov 10 at 15:13
This helps, a lot, thanks! I’ll probably end up finding someone who knows Python and supplying the C# info to work together to recreate it in Python, as I don’t really have time to learn Python right now. Any idea what the closest thing to a Windows Form App is in Python?
– TheNetPlex
Nov 15 at 17:53
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
TheNetPlex!
I don´t know if that's possible because C# and Python are completely different programming languages.
Also, because you wrote a Windows Forms Applications, it means that you didn't use WPF so it is even harder to migrate the user interface.
I would try to make the application from the scratch in python. By doing that you would avoid some kind of compatibilities or weird issues.
Hope I've been useful! Good Luck!
TheNetPlex!
I don´t know if that's possible because C# and Python are completely different programming languages.
Also, because you wrote a Windows Forms Applications, it means that you didn't use WPF so it is even harder to migrate the user interface.
I would try to make the application from the scratch in python. By doing that you would avoid some kind of compatibilities or weird issues.
Hope I've been useful! Good Luck!
answered Nov 8 at 0:07
Miguel Vila
444
444
Yes. @TheNetPlex: If you are in the lucky position to have a good separation between business logic and UI, then you might at least be able convert your code partly.
– Olivier Jacot-Descombes
Nov 10 at 15:13
This helps, a lot, thanks! I’ll probably end up finding someone who knows Python and supplying the C# info to work together to recreate it in Python, as I don’t really have time to learn Python right now. Any idea what the closest thing to a Windows Form App is in Python?
– TheNetPlex
Nov 15 at 17:53
add a comment |
Yes. @TheNetPlex: If you are in the lucky position to have a good separation between business logic and UI, then you might at least be able convert your code partly.
– Olivier Jacot-Descombes
Nov 10 at 15:13
This helps, a lot, thanks! I’ll probably end up finding someone who knows Python and supplying the C# info to work together to recreate it in Python, as I don’t really have time to learn Python right now. Any idea what the closest thing to a Windows Form App is in Python?
– TheNetPlex
Nov 15 at 17:53
Yes. @TheNetPlex: If you are in the lucky position to have a good separation between business logic and UI, then you might at least be able convert your code partly.
– Olivier Jacot-Descombes
Nov 10 at 15:13
Yes. @TheNetPlex: If you are in the lucky position to have a good separation between business logic and UI, then you might at least be able convert your code partly.
– Olivier Jacot-Descombes
Nov 10 at 15:13
This helps, a lot, thanks! I’ll probably end up finding someone who knows Python and supplying the C# info to work together to recreate it in Python, as I don’t really have time to learn Python right now. Any idea what the closest thing to a Windows Form App is in Python?
– TheNetPlex
Nov 15 at 17:53
This helps, a lot, thanks! I’ll probably end up finding someone who knows Python and supplying the C# info to work together to recreate it in Python, as I don’t really have time to learn Python right now. Any idea what the closest thing to a Windows Form App is in Python?
– TheNetPlex
Nov 15 at 17:53
add a comment |
up vote
0
down vote
You could try and save your UI code by using ironpython, assuming you are using WPF. The downside is that it is only python 2.7 compatible
add a comment |
up vote
0
down vote
You could try and save your UI code by using ironpython, assuming you are using WPF. The downside is that it is only python 2.7 compatible
add a comment |
up vote
0
down vote
up vote
0
down vote
You could try and save your UI code by using ironpython, assuming you are using WPF. The downside is that it is only python 2.7 compatible
You could try and save your UI code by using ironpython, assuming you are using WPF. The downside is that it is only python 2.7 compatible
answered Nov 7 at 23:36
WombatPM
1,85121316
1,85121316
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53199177%2ftranslating-a-c-sharp-windows-form-app-to-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Convert C# to Python. However the UI technology and many other things might be different in Python. So converting just the syntax will solve the problem only partly.
– Olivier Jacot-Descombes
Nov 7 at 23:07