* Fixed Switch to Appearance/Regular Block Items text overlapping block item controls * Added Enable/Disable toggle button to Appearance block items control * Added horizontal scrollbar to block items view * Moved Enable/Disable toggle button to separate user control(previously it was only visible when viewing Regular block items) * Added DesignTimeItemFilterBlockViewModel
29 lines
697 B
C#
29 lines
697 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
|
|
namespace Filtration.UserControls
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for EnableDisableToggleButton.xaml
|
|
/// </summary>
|
|
public partial class EnableDisableToggleButton : UserControl
|
|
{
|
|
public EnableDisableToggleButton()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|