BExplorer.Shell.FilterMenu_Strings.CheckedItems C# (CSharp) Method

CheckedItems() public method

Gets the [Content] of the checked CheckBoxes.
public CheckedItems ( ) : List
return List
		public List<string> CheckedItems() {
			return this.Items.OfType<CheckBox>().Where(x => x.IsChecked.Value).Select(x => x.Content.ToString()).ToList();
		}