18 lines
324 B
C#
18 lines
324 B
C#
namespace CascadingComboBox
|
|
{
|
|
public class FileItem
|
|
{
|
|
public string Path { get; }
|
|
|
|
public FileItem(string path)
|
|
{
|
|
Path = path;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return System.IO.Path.GetFileNameWithoutExtension(Path);
|
|
}
|
|
}
|
|
}
|