Hi there DICHeads!
If anyone wants to request a WPF tutorial you can ask me to write one and I'll get on that asap. I'm pretty bored right now at work (drone code) and I'd like to flex some WPF because it's just damn beautiful.
So, what tutorials would you guys like to be written? I'll add them to the DIC Tutorial Section.
Tutorial RequestsWant to know more about something specific?
Page 1 of 1
12 Replies - 7730 Views - Last Post: 17 September 2012 - 09:14 AM
Replies To: Tutorial Requests
#2 Guest_rashing*
Re: Tutorial Requests
Posted 13 February 2010 - 08:29 AM
i want your help papuccino 1. i making a web browser and now i am creating a themes button and i want the themes form to be split in two.
just like we select themes in windows 7.
how can i create that type of form
just like we select themes in windows 7.
how can i create that type of form
#3 Guest_sushant*
Re: Tutorial Requests
Posted 13 February 2010 - 12:19 PM
papuccino1, on 20 January 2010 - 10:21 AM, said:
Hi there DICHeads!
If anyone wants to request a WPF tutorial you can ask me to write one and I'll get on that asap. I'm pretty bored right now at work (drone code) and I'd like to flex some WPF because it's just damn beautiful.
So, what tutorials would you guys like to be written? I'll add them to the DIC Tutorial Section.
If anyone wants to request a WPF tutorial you can ask me to write one and I'll get on that asap. I'm pretty bored right now at work (drone code) and I'd like to flex some WPF because it's just damn beautiful.
So, what tutorials would you guys like to be written? I'll add them to the DIC Tutorial Section.
please if u can make tutorial i would be really thank full
#4
Re: Tutorial Requests
Posted 10 March 2010 - 08:32 AM
hi
Can you make a tutorial about Microsoft surface?
and if possible one that contains everything about it.
I have to make a game for my own schoolproject
but I don't know how and where to start it.
thanks in advance
Can you make a tutorial about Microsoft surface?
and if possible one that contains everything about it.
I have to make a game for my own schoolproject
but I don't know how and where to start it.
thanks in advance
#5
Re: Tutorial Requests
Posted 10 March 2010 - 08:41 AM
Please do not post the same question all over again. Read my reply in this topic:
http://www.dreaminco...wtopic89110.htm
http://www.dreaminco...wtopic89110.htm
#6 Guest_megan_111*
Re: Tutorial Requests
Posted 13 May 2010 - 04:29 AM
Is it possible that somebody could put together a VS 2010 tutorial about creating a WCF service and passing a parameter from the Mainpage.xaml.cs through to the WCF service method?
#7
Re: Tutorial Requests
Posted 13 May 2010 - 11:03 AM
megan_111, on 13 May 2010 - 06:29 AM, said:
Is it possible that somebody could put together a VS 2010 tutorial about creating a WCF service and passing a parameter from the Mainpage.xaml.cs through to the WCF service method?
in this tutorial...
http://www.dreaminco...0&#entry1016743
Change the "GetNames" method by adding a parameter for the method. Then refresh the service reference. You will now be required to pass a parameter to the method when you call the "GetNamesAsync" method from the Client.
#8 Guest_Guest*
Re: Tutorial Requests
Posted 24 December 2010 - 12:26 PM
i thinka tutorial on accessing the subitems of a listview would be great.
#9
Re: Tutorial Requests
Posted 16 February 2011 - 12:48 PM
Can someone create a tutorial about custom controls. Something like the C# calculator would be good. I can only get a custom control to work if it is from a different library. I would like to have a custom control that contains a custom control, and use it in a project. I don't see why this takes 3 libraries to do this.
#10
Re: Tutorial Requests
Posted 18 December 2011 - 02:59 PM
#11
Re: Tutorial Requests
Posted 28 May 2012 - 08:18 AM
What about a getting started tutorial for someone who's worked on the .NET framework before and so is familiar with C#, but not with WPF in particular. Apologies in advance if such a tutorial already exists, in which case a link would be appreciated. There needs to be a pinned topic containing an index of tutorials in order of advanced-ness for beginners.
#12
Re: Tutorial Requests
Posted 17 June 2012 - 10:32 AM
Hi Pappucino,
can you please give a tutorial for WPF beginners, with more practical examples?
I posted a question at http://www.dreaminco...ontrol-objects/
If you can give a tutorial on solving this (and different ways of doing this) that would help me and others
understand WPF binding
Most of forums answer with few lines of code and it's not always obvious (for newbies) which class, file it goes into.
A full walk through solution would be great.
Thanks,
-sri
can you please give a tutorial for WPF beginners, with more practical examples?
I posted a question at http://www.dreaminco...ontrol-objects/
If you can give a tutorial on solving this (and different ways of doing this) that would help me and others
understand WPF binding
Most of forums answer with few lines of code and it's not always obvious (for newbies) which class, file it goes into.
A full walk through solution would be great.
Thanks,
-sri
#13
Re: Tutorial Requests
Posted 17 September 2012 - 09:14 AM
Hello papuccino1,
I would like to request about usercontrol in wpf.
In my attach file, I already create 2 project:
1. SingleUserControl
2. MultipleUserControl
In MultipleUserControl project, exist two usercontrol and their Controller which will binding in MainView, if user clicked button. If I click button workspace 1, mainView will bind UserControl1 which already initialize in MainViewController and Data template in UserControlDictionary, and same with button workspace 2 to load UserControl2.
and in SingleUserControl project just exist 1 usercontrol which want to bind in MainView.
If I run MultipleUserControl project with this step :
1. button 1 clicked-> UserControl1 will be initialized and bind to MainView
2 button 2 clicked-> userControl2 will be initialized too and bind to MainView.
3. button 1 clicked -> UserControl1 will initialized from step 1 and not create a new Instance.
4. button 2 clicked -> UserControl2 will initialized from step 2 and not create a new Instance.
and in SingleUserControl I still confuse if I click button 1 -> Create a new instance userControl1, and then I click button 2 -> Create a new instance userControl1, and I back click button not create a new instance but use the previous instance, and button 2 too.
Could you help to create tutorial for case SingleUserControl?
Sorry about my english.
Thank you very much and I really help full if you create this tutorial.
I would like to request about usercontrol in wpf.
In my attach file, I already create 2 project:
1. SingleUserControl
2. MultipleUserControl
In MultipleUserControl project, exist two usercontrol and their Controller which will binding in MainView, if user clicked button. If I click button workspace 1, mainView will bind UserControl1 which already initialize in MainViewController and Data template in UserControlDictionary, and same with button workspace 2 to load UserControl2.
and in SingleUserControl project just exist 1 usercontrol which want to bind in MainView.
If I run MultipleUserControl project with this step :
1. button 1 clicked-> UserControl1 will be initialized and bind to MainView
2 button 2 clicked-> userControl2 will be initialized too and bind to MainView.
3. button 1 clicked -> UserControl1 will initialized from step 1 and not create a new Instance.
4. button 2 clicked -> UserControl2 will initialized from step 2 and not create a new Instance.
and in SingleUserControl I still confuse if I click button 1 -> Create a new instance userControl1, and then I click button 2 -> Create a new instance userControl1, and I back click button not create a new instance but use the previous instance, and button 2 too.
Could you help to create tutorial for case SingleUserControl?
Sorry about my english.
Thank you very much and I really help full if you create this tutorial.
Attached File(s)
-
ExampleUserControl.zip (321.22K)
Number of downloads: 17
This post has been edited by darmawan efendi: 17 September 2012 - 09:15 AM
Page 1 of 1
|
|

New Topic/Question
Reply



MultiQuote







|