문제

I'm adding a toolbar to my application and currently I'm adding some toggle buttons to the toolbar. I don't like using the default JButton because it is big and clunky (even if I remove the margins). Are there any libraries for easy creation of toolbars and toolbar buttons that look more native? Particularly, I'd like the buttons to look flat unless the user rolls over them or they are selected (like in Eclipse).

thanks, Jeff

도움이 되었습니까?

해결책

먼저 새로 추가 된 폴더의 인스턴스를 가져 오면 폴더에 해당하는 SPListItem 객체를 가져올 수 있습니다.

// Get instance of the newly added folder
SPFolder newSubFolder = folder.SubFolders.Add(txtPnlfFolder.Text);

// BreakRoleInheritance of the folder
newSubFolder.Item.BreakRoleInheritance(true);
.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top