by a30008 » Mon Jun 29, 2009 5:41 am
Hello Christian,
Yes, the combobox what we are using is different from System.Windows.Forms.ComboBox. The combobox is derivate from System.Windows.Controls.ComboBox, and plus several Interfaces.
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using AcpBusinessLayer;
using AcpUILib;
using AcpUI.Common;
namespace AcpUI
{
public class AcpComboBox : ComboBox,
IAcpUICtrlBase, IAcpUIValueCtrlBase<string>,
IAcpUIParentCtrlBase,
IAcpUIChildCtrlBase,
IAcpUICommon
{
}
}
We tried Testcomplete 7, It can get the "Text" and "SelectedItemText" of our custom combobox when it is inapplicable.
I want to know are there workaround to get the "Text" or "SelectedItemText" when it is inapplicable?
Regards,
a30008