public MessageEditControl()
        {
            InitializeComponent();

            recipients = new CustomCompositeCollection<SourceAddress>(To, CC, BCC);
            attachedFiles = new AdvancedObservableCollection<AttachmentDataHelper>();

            DataContext = this;
        }
Esempio n. 2
0
        public ChannelGroup(CustomCompositeCollection<SourceAddress> recipients, List<ChannelInstance> channels, string channelGroupName)
        {
            this.recipients = recipients;
            this.recipients.CollectionChanged += RecipientsCollection_Changed;

            Channels = channels;
            ChannelGroupName = channelGroupName;
            IsVisible = false;
        }
Esempio n. 3
0
        public ChannelGroup(CustomCompositeCollection <SourceAddress> recipients, List <ChannelInstance> channels, string channelGroupName)
        {
            this.recipients = recipients;
            this.recipients.CollectionChanged += RecipientsCollection_Changed;

            Channels         = channels;
            ChannelGroupName = channelGroupName;
            IsVisible        = false;
        }
        public MessageEditControl()
        {
            InitializeComponent();

            recipients    = new CustomCompositeCollection <SourceAddress>(To, CC, BCC);
            attachedFiles = new AdvancedObservableCollection <AttachmentDataHelper>();

            DataContext = this;
        }