|
| ||||||||||
| Tags: combo box, microsoft, silverlight, windows 7 phone |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| Combo Box for the Windows phone 7
|
|
#2
| ||||
| ||||
| Re: Combo Box for the Windows 7 phone
The combo box application is designed for the windows mobile and the computers, which are hidden on the tool box of the device menu bar. There are some of the styles inside the application which are for the user interface consistency. The metro style in the combo box is look like the drop down list, where all the options of the device are situating and there will be access by the applying with the proper one. The metro style is defined for the Combo Box, and sometimes it is found that the application is not fit with the basic user interface design. You can able to make the style with the TextBox and ListBox. But it might be less worthy to work on the text Box and on the List Box. |
|
#3
| ||||
| ||||
| Re: Combo Box for the Windows 7 phone
I found one simple script which is used to make the auto complete Combo box in normal combo box list in the windows mobile or the computer, for the operation with the operation you just have to set the combo box I the drop down list into the system windows forum, apply the script into the combo box, hope this will help you: Code: private void cbo_KeyUp(object sender, KeyEventArgs e)
{
string text = null;
int num = -1;
object item = null;
string str3 = null;
ComboBox box = (ComboBox)sender;
switch (e.KeyCode)
{
case Keys.Left:
case Keys.Up:
case Keys.Right:
case Keys.Down:
case Keys.Delete:
case Keys.Back:
return;
default:
text = box.Text;
for (int i = 0; i = 0)
{
item = box.Items[num];
str3 = box.GetItemText(item).Substring(text.Length);
box.Text = text + str3;
box.SelectionStart = text.Length;
box.SelectionLength = str3.Length;
box.SelectedItem = item;
}
}
} |
|
#4
| ||||
| ||||
| Re: Combo Box for the Windows 7 phone
A combo box is a component which comes with the drop down list for the use click for the display of the screen. There is a option to select from the associate list. If the list so much long then it will appear in the full screen, otherwise if it is vertical scrollbar then that will appears correctly. The selection of the list is depends on the non-editable text field which is placed in the next to the drop-down arrow in the screen. The current selection is appears in the drop down list which is pulled. Each of the option inside the drop down list will be highlighted, if the user make a choose of any of the option from the list then it will remove previous selection from the list. i this way the combo box works, this is mainly using for the make a choice from the wide range of the file of a list, and you can also arrange the file s with the list by the application. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Combo Box for the Windows phone 7" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Are Windows phone 7 and Windows phone 7.5 good for business purpose? | Zaedgy | Portable Devices | 4 | 08-02-2012 03:22 PM |
| Can we update current Windows Phone 7 devices to Windows Phone 8 whenever it gets available? | Chheda | Portable Devices | 4 | 01-02-2012 05:37 AM |
| Which plan is good BSNL plan from BBG FN Combo 600 or BB Home Combo UL 750? | SupaBoy | India BroadBand | 8 | 01-12-2011 07:58 PM |
| Reliance 649 combo VS Airtel 699 combo | Anish-Mumbai | India BroadBand | 5 | 05-05-2010 09:45 AM |
| what hotkey combo is the switch between windows? | Kana | Vista Help | 2 | 03-02-2007 12:26 AM |