微软.net精简框架常见问题及回答(中文版)(55)

王朝c#·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

'VB

Dim ds As New DataSet()

Dim numRows As Integer = ds.Tables(0).Rows.Count

Dim numCols As Integer = ds.Tables(0).Columns.Count

If the DataGrid is bound to the DataView you can also use DataView.Count.

5.34. How do I create a owner drawn Listbox?

See the .NET Compact Framework QuickStarts, Implementing Events topic:

http://samples.gotdotnet.com/quickstart/compactframework/doc/btndclick.aspx

5.35. How can I implement Control.GetNextControl under the .NET Compact Framework?

The tab order of the controls in the .NET Compact Framework correspond directly to the order of the Controls in the Form.Controls collection. Therefore, GetNextControl can be implemented by determining the index of the specified Control and determing its neighbors in the collection. //C#

public Control GetNextControl(Control ctl, bool forward)

{

int curIndex = this.Controls.IndexOf(ctl);

if (forward)

{

if (curIndex < this.Controls.Count)

curIndex++;

else

curIndex = 0;

}

else

{

if (curIndex > 0)

curIndex--;

else

curIndex = this.Controls.Count - 1;

}

return this.Controls[curIndex];

}

'VB

Public Function GetNextControl(ByVal ctl As Control, _

ByVal forward As Boolean) As Control

Dim curIndex As Integer = Me.Controls.IndexOf(ctl)

If forward Then

If curIndex < Me.Controls.Count Then

curIndex += 1

Else

curIndex = 0

End If

Else

If curIndex > 0 Then

curIndex -= 1

Else

curIndex = Me.Controls.Count - 1

End If

End If

Return Me.Controls(curIndex)

End Function 'GetNextControl

5.36. How do I get notified when the user clicks on a treeview node?

TreeView does not support the Click event, however, a workaround is to use the AfterSelect event instead.

5.37. How do I set the title of a fullscreen multiline edit control window?

This is not supported by the current version of the .NET Compact Framework.

5.38. Why don' I see the validItem selected when I set ComboBox.SelectedValue to validItemInCollection?

Setting the SelectedValue property only works if the control is databound.

5.39. How do I detect the location where a 'tap & hold' occurred to bring up a context menu on my custom control?

Handle the ContextMenu.Popup event, and then query the current mouse coordinates using 'Control.MousePosition'.

5.40. Why doesn't the scrollbar value ever get set to the maximum value?

Similar to the NumericUpDown control, the maximum achievable value is the first empty row above the thumb. More specifically, from the editor properties, this equates to:

Maximum - (LargeChange + 1).

5.41. How do I tab out of a custom control to the previous control?

Call this.Parent.Controls(this.Parent.GetChildIndex(customcontrol) - 1).Focus() in the KeyDown event handler when a Keys.Up key is detected.

5.42. How do I add Toolbar buttons with transparency?

Icons support transparency, however, there is a known bug in Visual Studio .NET 2003 designer that creates incorrect code and makes icons non-transparent. A work around is to add an icon file to the ImageList outside of InitializeComponent and add the icon files to the project as content or embedded resources. The following code demonstrates this: //C#

using System.Drawing;

using System.IO;

using System.Reflection;

// Loaded as content example

private void Form1_Load(object sender, System.EventArgs e)

{

this.imageList1.Images.Add(new Icon(File.Open("fullFileName.ico",

FileMode.Open)));

this.toolBar1.Buttons[0].ImageIndex = 0;

}

第一頁    上一頁    第55頁/共78頁    下一頁    最後頁
第01頁 第02頁 第03頁 第04頁 第05頁 第06頁 第07頁 第08頁 第09頁 第10頁 
第11頁 第12頁 第13頁 第14頁 第15頁 第16頁 第17頁 第18頁 第19頁 第20頁 
第21頁 第22頁 第23頁 第24頁 第25頁 第26頁 第27頁 第28頁 第29頁 第30頁 
第31頁 第32頁 第33頁 第34頁 第35頁 第36頁 第37頁 第38頁 第39頁 第40頁 
第41頁 第42頁 第43頁 第44頁 第45頁 第46頁 第47頁 第48頁 第49頁 第50頁 
第51頁 第52頁 第53頁 第54頁 第55頁 第56頁 第57頁 第58頁 第59頁 第60頁 
第61頁 第62頁 第63頁 第64頁 第65頁 第66頁 第67頁 第68頁 第69頁 第70頁 
第71頁 第72頁 第73頁 第74頁 第75頁 第76頁 第77頁 第78頁 
 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航