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

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

'VB

Protected Overrides Sub OnParentChanged(ByVal e As EventArgs)

MyBase.OnParentChanged(e)

Me.BackColor = Parent.BackColor

End Sub 'OnParentChanged

5.28. 为什么NumericUpDown控件能接受decimal类型的值,但不会显示大于2^16的值?

虽然NumericUpDown控件接受decimal类型的值,但.net精简框架把这个控件的值当作int类型来处理。如,10.23当作10。同样此控件在PocketPC上不接受大于带符号的16位整型。

5.29. 为什么不能在DomainUpDown 中输入文字,而要选择?

DomainUpDown控件不会对输入的文字进行确认(不象完整的.net框架)。如果您先输入了一些文字,再按上、下箭头,它会显示内容改变前的值的下一个值。

5.30. 为什么OpenFileDialog被限制在"My Documents" 文件夹中?

OpenFileDialog的初始化目录被限制在"My Documents"文件夹或它的子文件夹中。这个限制是由PocketPC系统强加的,为了帮助用户在标准目录下管理自己的文档。

5.31. How can I activate the SIP (InputPanel) without a menu?

The SIP can be activated by P/Invoking the function "SipShowIM" as follows. //C#

using System.Runtime.InteropServices;

const uint SIPF_OFF = 0x0;

const uint SIPF_ON = 0x1;

[DllImport("coredll.dll")]

private extern static void SipShowIM(uint dwFlag);

'VB

Imports System.Runtime.InteropServices

Const SIPF_OFF As Integer = &H0

Const SIPF_ON As Integer = &H1

<DllImport("coredll.dll")> _

Private Shared Function SipShowIM(ByVal dwFlag As Integer) As Integer

End Function

5.32. How do I add a subnode to every node in a TreeView?

Adding subnodes to all nodes is accomplished by iterating through all of the nodes in the TreeView and adding a new node to each.

//C#

foreach (TreeNode node in treeView1.Nodes)

{

node.Nodes.Add(new TreeNode("SubNode"));

}

'VB

Dim node As TreeNode

For Each node In treeView1.Nodes

node.Nodes.Add(New TreeNode("SubNode"))

Next node

5.33. How do I determine the number of rows or columns in a DataGrid?

The number of rows and columns in a DataGrid can be determined from the data source itself. For example:

//C#

DataSet ds = new DataSet();

int numRows = ds.Tables[0].Rows.Count;

int numCols = ds.Tables[0].Columns.Count;

'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];

}

第一頁    上一頁    第15頁/共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- 王朝網路 版權所有 導航