- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
10 Posted Topics
Tired is what someone says after programming in C#
I have a Storyboard which targets an Ellipse. How do I make the Storyboard target an image which I have in a List<>? This is the code: <Storyboard x:Name="sbMoveImages"> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateX)" Storyboard.TargetName="ellipse"> <EasingDoubleKeyFrame KeyTime="0" Value="-1"/> <EasingDoubleKeyFrame KeyTime="0:0:3" Value="641"/> <EasingDoubleKeyFrame KeyTime="0:0:5" Value="640"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateY)" Storyboard.TargetName="ellipse"> <EasingDoubleKeyFrame KeyTime="0" Value="1"/> <EasingDoubleKeyFrame KeyTime="0:0:3" …
Would I be telling the truth if I was to say that a [I][B]type [/B][/I]in C# is defined by a [B][I]class[/I][/B]. An example of this is the String class. And with this class, I can make [I][B]instances [/B][/I]of it, for example, a simple variable declaration: [CODE]string myName = "Usmaan";[/CODE] The …
Can someone, unambiguously and without too much technicality explain to me why would one want to have a Constructor in their program. I understand what a Constructor is, and that it can be overloaded and it's name is the same as the class and it can't have a return type …
What Martje means is: "Nevermind, I already got the answer. Thank you so much for your generosity and help." But yeah, do share the answer with us please.
I think i'll get accused of blasphemy if I was to choose VB over C#, lol. UsSy
Wow - This is extremely clever stuff! Could you add me on skype or msn and teach me some of this?
Hello Forum, how are you? Okay so, I wish to create a bunch of strings. Simple.... [CODE] string myName = "Usmaan"; string myOccupation = "Engineer"; string myFav = "DaniWeb"; string randomString = ""; [/CODE] Now what I want to do is, make the compiler randomly....I repeat, randomly select one of …
Hello there folks, I'm trying to make myself more C# literate. I've decided to branch myself towards the GUI subject for the moment and get myself more familiar with dialog boxes and what not. So for the moment, I've created a form which has a RichTextBox. And I've added a …
The End.
UsSy