Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions must demonstrate a minimal understanding of the problem being solved. Tell us what you've tried to do, why it didn't work, and how it should work. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
When an event is fired from an element on one tab, how can I have the handler switch the view to a different tab.
I am looking for how to do it in C# code, not xaml. I have done research and cannot find a c# solution.
TabControl.SelectedIndex = <Integer index of the tab you want to display in the 0-based Tab array>
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 to create writable and searchable drop down list in my asp.net using c#
my drop down as follows...
Hyderabad
Warangal
Kakinada
ongole
vizag
guntur
There are a lot of good solutions out of the box, like select2 or choosen. Check them.
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 have not getting selection text in WinRT so please help me. In my app i am using flipview but i have not getting copy text and selection text.
By default TextBlock doesn't provide text selection. You can use read only TextBox to show the text which can be selected.
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 ask a question. I am getting the data from database and when I write the texbox I want to add nearby entries under the textbox. Like searching on google. Sorry if there is any answer in forum. I don't know how i can search it on google.
It sounds like you want an AutoComplete textbox
http://www.c-sharpcorner.com/uploadfile/dpatra/auto-complete-box-in-wpf-toolkit/
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 do I make a button that allows me to copy like the ctrl+c function.
I want to select a part of a rich text box and when the button is clicked it copies the selected part. With formatting!
On button click event you should do something like:
if (richTextBox1.SelectionLength > 0)
// Copy the selected text to the Clipboard
Clipboard.SetText(richTextBox1.SelectedText, TextDataFormat.Text);
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
Im busy creating some charts to go on my silverlight application and would just like to know what the .Series[0] represents in the following piece of code
PieSeries pieSeries = ((PieSeries)chart.Series[0]);
Did you check the documentation for the control you're using? What exactly are you having trouble with?
Sec, .Series[0] means to access the Series property, which is an array or list type or indexer, where you want to access the first (zero-based) element (0).