我目前正在尝试开发Outlook“发送到”字段,例如自动填充文本框,其中包含建议,标记化输入。目前我正在尝试使用WPF扩展工具包的TokenizedTextBox开发它(在发布时没有正式提供),它们的源代码中有。 source site有没有人用过这个?
编辑:任何人都可以给我一个如何使用TokenizedTextBox的例子,我只是无法获得自动完成列表。代码
<Grid>
<xctk:TokenizedTextBox Name="testtokenized" Margin="0,25,0,240" >
</xctk:TokenizedTextBox>
</Grid>
testtokenized.ItemsSource = new string[] { "hey", "Bye", "goodmorning", "goodnight", "OrionCity" };
答案 0 :(得分:1)
<StackPanel Orientation="Horizontal" >
<xctk:TokenizedTextBox TabIndex="230" x:Name="testtokenized"/>
<Button x:Name="sendAllEmail" Click="sendAllEmail_Click" TabIndex="20" ToolTip="Open All In Default Email Client" Height="20" Width="20">
<Image Source="..\Common\Images\Send.png" />
</Button></StackPanel>
Private Shared Sub OpenOutlook(ByVal strTo As String, ByVal strCC As String)
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(String.Format("mailto:{0}?cc={1}", strTo, strCC)))
End Sub
Public Shared Sub OpenEmailInEmailClient()
If String.IsNullOrWhiteSpace(testtokenized.Text, testtokenized.Text)Then
Return
End If
OpenOutlook(strTo, strCC)
End Sub