私のアプリケーションでは、データベースに接続することで、ボタンがRadScrollablePanelに追加されます。他のリストでは、ボタンの名前が利用可能です。ユーザーがクリックしてリスト2から選択すると、RadScrollablePanelのボタンを選択したいと思います。このコードでボタンを見つけました:
System.Windows.Forms.Control[] _controls = MainForm.Controls.Find(PointId.ToString(), true);
foreach (var itemButton in _controls)
{
if (itemButton.Name == PointId.ToString())
{
if (BLL.PropertiesClass.LastFocusedExplorerbarItem != null)
BLL.PropertiesClass.LastFocusedExplorerbarItem.BackColor = Color.AliceBlue;
itemButton.BackColor = Color.FromArgb(0x4F, 0x00, 0x60, 0xFF);
BLL.PropertiesClass.LastFocusedExplorerbarItem = itemButton;
/* Which Method I Do This*/
break;
}
}
テストPerformLayout
しScrollControlIntoView
ましたが、パネルがスクロールしません。