Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want to scroll listbox on button click place inside of listbox in
windows phone using C#
In LongListSelector, there is method for scrollin which is LLS>Scroolto(item), in which you can easily tell which item shoud be focuesed while click. So you can use Longlistselector
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
how can I create designed properties in user control like DataBindings property of TextBox control
Can someone help me with a link or video tutorial
You can try out http://msdn.microsoft.com/en-us/library/a19191fh.aspx wich will help you in creating designtime properties. Look especially at DesignerSerializationVisibilityAttribute.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 8 years ago.
Improve this question
I have two variables 'name' and 'amount' for about 100 items.
FYI item is a class and name and amount are its variables.
Now i have to display all my items as a list, with name in the right and amount in left of each row in my windows phone app.
what would be the right way to do it??
Create a new app that uses the "Databound Application" template and you'll get something very close to your needs that should be easy to modify for your exact requirements and provide a useful learning source.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Is it possible to change the background image of a button when you click it? I'm using C# on Windows Forms Application.
Yes it is possible. Just set the BackgroundImage property of the button on it's click event.
Try this,
button1.BackgroundImage = Image.FromFile("ImageFilepath");
button1.BackgroundImageLayout = ImageLayout.Stretch;
background-size property of CSS3 should work for you i.e.,
background-size:cover or background-size:100%
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want to display some sort of text when my mouse pass next to a button or an expander.
How could I do this in c# WPF ?
Is it like a context menu ?
Thanks in advance
Try the ToolTip
<Button Content="OK" ToolTip="Saves the information and Closes the window." />
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I am trying to figure out how to make a form show up like is on the Paint.NET Program, like the History, Colors, Etc
Like where they fade out over where the painting is.
Is there any way that this can be done?
Any help would be appreciated.
both Winforms Form and WPF / Silverlight Window have an Opacity property. Set that to something below 1.