public AddTaskbarAppletEventArgs(int slotIndex, ShortcutType type, uint objId, ShortcutObjectType objectType, uint objIndex, uint userId, uint objData, string text)
 {
     SlotIndex  = slotIndex;
     Type       = type;
     ObjId      = objId;
     ObjectType = objectType;
     ObjIndex   = objIndex;
     UserId     = userId;
     ObjData    = objData;
     Text       = text;
 }
Beispiel #2
0
 public Shortcut(int slotIndex, ShortcutType type, uint objId, ShortcutObjectType shortcutObjectType, uint objIndex, uint userId, uint objData, string text)
 {
     SlotIndex   = slotIndex;
     Type        = type;
     ObjectId    = objId;
     ObjectType  = shortcutObjectType;
     ObjectIndex = objIndex;
     UserId      = userId;
     ObjectData  = objData;
     Text        = text;
 }
Beispiel #3
0
 public DbShortcut(ShortcutTaskbarTarget targetTaskbar, int?slotLevelIndex, int slotIndex, ShortcutType type, uint objectId, ShortcutObjectType objectType, uint objectIndex, uint userId, uint objectData, string text)
 {
     TargetTaskbar  = targetTaskbar;
     SlotLevelIndex = slotLevelIndex;
     SlotIndex      = slotIndex;
     Type           = type;
     ObjectId       = objectId;
     ObjectType     = objectType;
     ObjectIndex    = objectIndex;
     UserId         = userId;
     ObjectData     = objectData;
     Text           = text;
 }
Beispiel #4
0
 public DbShortcut(ShortcutTaskbarTarget targetTaskbar, int slotIndex, ShortcutType type, uint objectId, ShortcutObjectType objectType, uint objectIndex, uint userId, uint objectData, string text)
     : this(targetTaskbar, null, slotIndex, type, objectId, objectType, objectIndex, userId, objectData, text)
 {
 }