windows store app in C# [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
This might be very newbie, I am experienced asp.net and c# developer with winforms experience as well.
I wonder what I need to learn to start making windows store app, what new technonologies, languages?
and 2nd question is:
How can I submit applications to the new windows store if its possible now?
thanks

Second question first. Right now, you cannot submit applications to the Windows Store. The OS is still in beta (consumer preview) and the store is not open to everyone.
There are many ways to program on Windows 8. You can use JavaScript/HTML5 or you can use C#/XAML or C++/XAML. Given your background, you should look into C# as a language with XAML as a UI framework. This is very similar to Silverlight or WPF that you may have run across.
One good place to start is Charles Petzold's upcoming book. It's on sale right now. Another place is on http://dev.windows.com. That will point you at tutorials, reference documentation, and samples.

Related

Learn flow of a project to maintain [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I joined as a Fresher(trainee) in Software Company for Windows Store development. I don't know much about C#. My company is newly started Windows Store development. they don't have Dot net development before., that's why my company got an Senior dot net employee to complete the project,When ever he complete the project he left away from the company.
My problem is I have to maintain the project after him. My question how to manage a C# project. How to maintain project if there is any issues. I just want to learn the project flow & analyze my project to debug the project errors in future. But i am struggling how to start to analyze the project
Don't neglect or close this question. I am not asking about my personal issue.
Please answer me how can i start to learn & build my project regarding flow.
I can accept any suggestions & Any help regarding this is appreciated.
If you want to learn windows store apps then This and This links will help you in beginner level
Its important to learn XAML or any tool which creates XAML for you like expression blend.Since maintenance changes will be more on UI side.

What type of Visual Studio c# project should i select for making an instant messenger application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
what c# project must i choose in order to create an instant messaging application in visual studio.
pls help.
Thanks. :)
You have to plan a lot of different things during application design process. The main project anyway, of course, should be a windows form application or a WPF... then, eventually some libraries.
This question is far too common and will be closed soon.
But to give you some suggestions for directions you can go next:
Design you overall architecture first
Are there technical restrictions for the UI?
You have basically following options: Console App, WPF, WinForms, Silverlight, ASP
Since you said in a comment that the app should be a web app, maybe you want create an ASP.Net application.

metronome in C# for WP7 [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am a total newbie for app development with a little knowledge of c#. I have some free time in my hand ans was thinking of learning WP7 app development as well as c#. So, I figured I will build a metronome app in c# for WP7. I think learning by doing a project will me most effective.
But, I haven't been able to find much resources on how to accomplish this. On the web there are lots of tuts on how to build a metronome in JS but not in c#. So, If anyone can point me to some resources to get me started, that would be great. I'll be trying hard learning bits by bits as I progress.
http://create.msdn.com/en-US/ You will find tutorials, videos & all sorts of other excellent good times on here.

tooltip catcher c# [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to create an application which can copy the tool tip (the tool tips which are shown on the current desktop/window) if I press hot keys. So how can I track whether the current desktop having a tool tip.
First, its not possible to use the Managed.Net API to access windows in other applications so you will have to do somthing a bit different.
I guess you could use the Win32 API to enumerate windows and find those of the class Tooltip_Class32. Then you'd have to read the text on them.
You can enum windows as described on SO here and on PInvoke.net here.
If you limit to just the Tooltip_Class32 then you will only get the tool tip windows.
I'm not sure how windows contructs a tool tip. I'm guessing you can read the text from the tool tip or from some child control window by using the SendMessage API with the WM_GETTEXT message like here.
That should get you started, I've never actually done it myself but it seems feasible.

.net where to start [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I have a .net project and I am not a .net developer but I want to learn as I go through the process. I have been given a folder with some C# files and folders like bin etc. I heard that the project was developed in .net 2005. I try to open it in .net 2010 and it asks me to convert it. I converted it but I am not sure what to do next. The syntax doesnt have any colors or anything. Any help will be appreciated. thanks!
I'd start here: http://msdn.microsoft.com/en-us/beginner/default.aspx
There are so many resources out there to learn a huge amount of information, but this site was created specifically for beginning .NET developers, and it is done well.
My boy was able to start developing at 8 years old with little help from me, by going to the Kids section, so it's a nice gentle introduction.
Try here. That is the msdn links for the basic tutorials for beginners. Also the documentation in MSDN is really complete for reference and also in case you need to clarify concepts you don't understand.

Categories