ClearCanvas.ImageViewer.Configuration.View.WinForms.ServerTreeComponentControl.UpdateServerGroup(System.Windows.Forms.TreeNode)

Here are the examples of the csharp api class ClearCanvas.ImageViewer.Configuration.View.WinForms.ServerTreeComponentControl.UpdateServerGroup(System.Windows.Forms.TreeNode) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: ClearCanvas
Source File: ServerTreeComponentControl.cs
private void UpdateServerGroups(IEnumerable<TreeNode> nodes)
		{
			if (!_component.ShowCheckBoxes)
				return;

			foreach (TreeNode node in nodes)
			{
                if (node.Tag is IServerTreeGroup)
				{
					UpdateServerGroups(CollectionUtils.Cast<TreeNode>(node.Nodes));
					UpdateServerGroup(node);
				}
			}
		}