我有一個RadScrollablePanel,我想隱藏邊框。你會認爲:如何隱藏RadForce for Winforms的邊框RadScrollablePanel
RadScrollablePanel1.PanelContainer.BorderStyle = BorderStyle.None;
會工作,但它does not。請幫忙!
我有一個RadScrollablePanel,我想隱藏邊框。你會認爲:如何隱藏RadForce for Winforms的邊框RadScrollablePanel
RadScrollablePanel1.PanelContainer.BorderStyle = BorderStyle.None;
會工作,但它does not。請幫忙!
這裏是你如何能做到這一點:只要通過設置ElementVisibility.Collapsed
邊境
radScrollablePanel1.PanelElement.Border.Visibility =
Telerik.WinControls.ElementVisibility.Collapsed;
仍然存在:
cpnlLessUsedFields.ControlsContainer.PanelElement.Border.Visibility = ElementVisibility.Collapsed;
我不得不這樣做,得到它不顯示邊框:
cpnlLessUsedFields.ControlsContainer.PanelContainer.BorderStyle = BorderStyle.None;
cpnlLessUsedFields.ControlsContainer.PanelElement.Border.Visibility = ElementVisibility.Collapsed;`