123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046 |
- using PicView.Core.Extensions;
- using PicView.Core.Localization;
- using ReactiveUI;
- namespace PicView.Core.ViewModels;
- public class TranslationViewModel : ReactiveObject
- {
- public void UpdateLanguage()
- {
- var t = TranslationManager.Translation;
-
- File = t.File;
- SelectFile = t.OpenFileDialog;
- OpenLastFile = t.OpenLastFile;
- Paste = t.FilePaste;
- Copy = t.Copy;
- Reload = t.Reload;
- Print = t.Print;
- DeleteFile = t.DeleteFile;
- PermanentlyDelete = t.PermanentlyDelete;
- Save = t.Save;
- CopyFile = t.CopyFile;
- NewWindow = t.NewWindow;
- Close = t.Close;
- CloseGallery = t.CloseGallery;
- Open = t.Open;
- OpenFileDialog = t.OpenFileDialog;
- ShowInFolder = t.ShowInFolder;
- OpenWith = t.OpenWith;
- RenameFile = t.RenameFile;
- DuplicateFile = t.DuplicateFile;
- RotateLeft = t.RotateLeft;
- RotateRight = t.RotateRight;
- Flip = t.Flip;
- UnFlip = t.Unflip;
- ShowBottomGallery = t.ShowBottomGallery;
- HideBottomGallery = t.HideBottomGallery;
- AutoFitWindow = t.AutoFitWindow;
- Stretch = t.Stretch;
- Crop = t.Crop;
- ResizeImage = t.ResizeImage;
- GoToImageAtSpecifiedIndex = t.GoToImageAtSpecifiedIndex;
- ToggleScroll = t.ToggleScroll;
- ScrollEnabled = t.ScrollingEnabled;
- ScrollDisabled = t.ScrollingDisabled;
- ScrollDirection = t.ScrollDirection;
- Reverse = t.Reverse;
- Forward = t.Forward;
- Slideshow = t.Slideshow;
- Settings = t.Settings;
- AboutWindow = t.InfoWindow;
- ImageInfo = t.ImageInfo;
- About = t.About;
- ShowAllSettingsWindow = t.ShowAllSettingsWindow;
- StayTopMost = t.StayTopMost;
- SearchSubdirectory = t.SearchSubdirectory;
- ToggleLooping = t.ToggleLooping;
- ApplicationShortcuts = t.ApplicationShortcuts;
- BatchResize = t.BatchResize;
- Effects = t.Effects;
- EffectsTooltip = t.EffectsTooltip;
- FileProperties = t.FileProperties;
- OptimizeImage = t.OptimizeImage;
- ImageInfo = t.ImageInfo;
- FileName = t.FileName;
- FileSize = t.FileSize;
- Folder = t.Folder;
- FullPath = t.FullPath;
- Created = t.Created;
- Modified = t.Modified;
- LastAccessTime = t.LastAccessTime;
- ConvertTo = t.ConvertTo;
- NoConversion = t.NoConversion;
- Resize = t.Resize;
- NoResize = t.NoResize;
- Apply = t.Apply;
- Cancel = t.Cancel;
- BitDepth = t.BitDepth;
- ReadAbleAspectRatio = t.AspectRatio;
- Width = t.Width;
- Height = t.Height;
- SizeMp = t.SizeMp;
- Resolution = t.Resolution;
- PrintSizeIn = t.PrintSizeIn;
- PrintSizeCm = t.PrintSizeCm;
- Centimeters = t.Centimeters;
- Inches = t.Inches;
- SizeTooltip = t.SizeTooltip;
- Latitude = t.Latitude;
- Longitude = t.Longitude;
- Altitude = t.Altitude;
- Authors = t.Authors;
- DateTaken = t.DateTaken;
- Copyright = t.Copyright;
- ResolutionUnit = t.ResolutionUnit;
- ColorRepresentation = t.ColorRepresentation;
- CompressedBitsPixel = t.CompressedBitsPixel;
- Compression = t.Compression;
- ExposureTime = t.ExposureTime;
- Title = t.Title;
- Subject = t.Subject;
- Software = t.Software;
- CameraMaker = t.CameraMaker;
- CameraModel = t.CameraModel;
- FocalLength = t.FocalLength;
- Fnumber = t.FNumber;
- Fstop = t.Fstop;
- MaxAperture = t.MaxAperture;
- ExposureBias = t.ExposureBias;
- ExposureProgram = t.ExposureProgram;
- DigitalZoom = t.DigitalZoom;
- ISOSpeed = t.ISOSpeed;
- FocalLength35mm = t.FocalLength35mm;
- MeteringMode = t.MeteringMode;
- Contrast = t.Contrast;
- Saturation = t.Saturation;
- Sharpness = t.Sharpness;
- WhiteBalance = t.WhiteBalance;
- FlashEnergy = t.FlashEnergy;
- FlashMode = t.FlashMode;
- LightSource = t.LightSource;
- Brightness = t.Brightness;
- PhotometricInterpretation = t.PhotometricInterpretation;
- Orientation = t.Orientation;
- ExifVersion = t.ExifVersion;
- LensMaker = t.LensMaker;
- LensModel = t.LensModel;
- SortFilesBy = t.SortFilesBy;
- FileExtension = t.FileExtension;
- CreationTime = t.CreationTime;
- Random = t.Random;
- Ascending = t.Ascending;
- Descending = t.Descending;
- RecentFiles = t.RecentFiles;
- SetAsWallpaper = t.SetAsWallpaper;
- SetAsLockScreenImage = t.SetAsLockScreenImage;
- Image = t.Image;
- CopyImage = t.CopyImage;
- FileCopyPath = t.FileCopyPath;
- FileCut = t.Cut;
- CtrlToZoom = t.CtrlToZoom;
- ScrollToZoom = t.ScrollToZoom;
- GeneralSettings = t.GeneralSettings;
- Appearance = t.Appearance;
- Language = t.Language;
- MouseWheel = t.MouseWheel;
- MiscSettings = t.MiscSettings;
- StayCentered = t.StayCentered;
- ShowFileSavingDialog = t.ShowFileSavingDialog;
- OpenInSameWindow = t.OpenInSameWindow;
- ApplicationStartup = t.ApplicationStartup;
- None = t.None;
- AdjustTimingForSlideshow = t.AdjustTimingForSlideshow;
- AdjustTimingForZoom = t.AdjustTimingForZoom;
- AdjustNavSpeed = t.AdjustNavSpeed;
- SecAbbreviation = t.SecAbbreviation;
- ResetButtonText = t.ResetButtonText;
- ShowBottomToolbar = t.ShowBottomToolbar;
- ShowBottomGalleryWhenUiIsHidden = t.ShowBottomGalleryWhenUiIsHidden;
- ChangeKeybindingTooltip = t.ChangeKeybindingTooltip;
- ToggleTaskbarProgress = t.ToggleTaskbarProgress;
- ChangeKeybindingText = t.ChangeKeybindingText;
- Navigation = t.Navigation;
- NextImage = t.NextImage;
- PrevImage = t.PrevImage;
- LastImage = t.LastImage;
- FirstImage = t.FirstImage;
- NextFolder = t.NextFolder;
- PrevFolder = t.PrevFolder;
- SelectGalleryThumb = t.SelectGalleryThumb;
- ScrollAndRotate = t.ScrollAndRotate;
- ScrollUp = t.ScrollUp;
- ScrollDown = t.ScrollDown;
- ScrollToTop = t.ScrollToTop;
- ScrollToBottom = t.ScrollToBottom;
- Zoom = t.Zoom;
- ZoomIn = t.ZoomIn;
- ZoomOut = t.ZoomOut;
- Pan = t.Pan;
- ResetZoom = t.ResetZoom;
- ImageControl = t.ImageControl;
- ChangeBackground = t.ChangeBackground;
- InterfaceConfiguration = t.InterfaceConfiguration;
- FileManagement = t.FileManagement;
- ToggleFullscreen = t.ToggleFullscreen;
- Fullscreen = t.Fullscreen;
- ShowImageGallery = t.ShowImageGallery;
- WindowManagement = t.WindowManagement;
- CenterWindow = t.CenterWindow;
- WindowScaling = t.WindowScaling;
- NormalWindow = t.NormalWindow;
- SetStarRating = t.SetStarRating;
- _1Star = t._1Star;
- _2Star = t._2Star;
- _3Star = t._3Star;
- _4Star = t._4Star;
- _5Star = t._5Star;
- RemoveStarRating = t.RemoveStarRating;
- Theme = t.Theme;
- DarkTheme = t.DarkTheme;
- LightTheme = t.LightTheme;
- MouseDrag = t.MouseDrag;
- DoubleClick = t.DoubleClick;
- MoveWindow = t.MoveWindow;
- GithubRepo = t.GithubRepo;
- Version = t.Version;
- ViewLicenseFile = t.ViewLicenseFile;
- CheckForUpdates = t.CheckForUpdates;
- Credits = t.Credits;
- ColorPickerTool = t.ColorPickerTool;
- ColorPickerToolTooltip = t.ColorPickerToolTooltip;
- ExpandedGalleryItemSize = t.ExpandedGalleryItemSize;
- BottomGalleryItemSize = t.BottomGalleryItemSize;
- Square = t.Square;
- Uniform = t.Uniform;
- UniformToFill = t.UniformToFill;
- FillSquare = t.FillSquare;
- Fill = t.Fill;
- GallerySettings = t.GallerySettings;
- GalleryThumbnailStretch = t.GalleryThumbnailStretch;
- BottomGalleryThumbnailStretch = t.BottomGalleryThumbnailStretch;
- RestoreDown = t.RestoreDown;
- SideBySide = t.SideBySide;
- SideBySideTooltip = t.SideBySideTooltip;
- HighlightColor = t.HighlightColor;
- AllowZoomOut = t.AllowZoomOut;
- GlassTheme = t.GlassTheme;
- ChangingThemeRequiresRestart = t.ChangingThemeRequiresRestart;
- ShowUI = t.ShowUI;
- HideUI = t.HideUI;
- HideBottomToolbar = t.HideBottomToolbar;
- Center = t.Center;
- Tile = t.Tile;
- Fit = t.Fit;
- Pixels = t.Pixels;
- Percentage = t.Percentage;
- Quality = t.Quality;
- SaveAs = t.SaveAs;
- Reset = t.Reset;
- AdvanceBy10Images = t.AdvanceBy10Images;
- AdvanceBy100Images = t.AdvanceBy100Images;
- GoBackBy10Images = t.GoBackBy10Images;
- GoBackBy100Images = t.GoBackBy100Images;
- ShowFadeInButtonsOnHover = t.ShowFadeInButtonsOnHover;
- DisableFadeInButtonsOnHover = t.DisableFadeInButtonsOnHover;
- UsingTouchpad = t.UsingTouchpad;
- UsingMouse = t.UsingMouse;
- SourceFolder = t.SourceFolder;
- OutputFolder = t.OutputFolder;
- GenerateThumbnails = t.GenerateThumbnails;
- Lossless = t.Lossless;
- Lossy = t.Lossy;
- Start = t.Start;
- Thumbnail = t.Thumbnail;
- WidthAndHeight = t.WidthAndHeight;
- CloseWindowPrompt = t.CloseWindowPrompt;
- ShowConfirmationOnEsc = t.ShowConfirmationOnEsc;
- ImageAliasing = t.ImageAliasing;
- HighQuality = t.HighQuality;
- Lighting = t.Lighting;
- BlackAndWhite = t.BlackAndWhite;
- NegativeColors = t.NegativeColors;
- Blur = t.Blur;
- PencilSketch = t.PencilSketch;
- OldMovie = t.OldMovie;
- Posterize = t.Posterize;
- ClearEffects = t.ClearEffects;
- Solarize = t.Solarize;
- Maximize = t.Maximize;
- SelectAll = t.SelectAll;
- Normal = t.Normal;
- FileAssociations = t.FileAssociations;
- SelectFileTypesToAssociate = t.SelectFileTypesToAssociate;
- Filter = t.Filter;
- UnselectAll = t.UnselectAll;
- Unassociate = t.Unassociate;
- ShowConfirmationDialogWhenMovingFileToRecycleBin = t.ShowConfirmationDialogWhenMovingFileToRecycleBin;
- MoveToRecycleBin = t.MoveToRecycleBin;
- ShowConfirmationDialogWhenPermanentlyDeletingFile = t.ShowConfirmationDialogWhenPermanentlyDeletingFile;
- Downloading = t.Downloading;
- Pinned = t.Pinned;
- Unpin = t.Unpin;
- Pin = t.Pin;
- Clear = t.Clear;
- OpenFileHistory = t.OpenFileHistory;
- ConstrainBackgroundToImage = t.ConstrainBackgroundToImage;
- Window = t.Window;
- WindowMargin = t.WindowMargin;
- Mouse = t.Mouse;
- MouseSideButtons = t.MouseSideButtons;
- NavigateFileHistory = t.NavigateFileHistory;
- NavigateBetweenDirectories = t.NavigateBetweenDirectories;
- Comment = t.Comment;
- }
- #region Static Translation Strings
- public string? _1Star
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? _2Star
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? _3Star
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? _4Star
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? _5Star
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? About
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? AboutWindow
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? AdjustNavSpeed
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? AdjustTimingForSlideshow
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? AdjustTimingForZoom
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? AdvanceBy100Images
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? AdvanceBy10Images
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? AllowZoomOut
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Altitude
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Appearance
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ApplicationShortcuts
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ApplicationStartup
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Apply
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Ascending
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Authors
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? AutoFitWindow
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? BatchResize
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? BitDepth
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? BlackAndWhite
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Blur
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? BottomGalleryItemSize
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? BottomGalleryThumbnailStretch
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Brightness
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? CameraMaker
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? CameraModel
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Cancel
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Center
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? CenterWindow
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Centimeters
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ChangeBackground
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ChangeKeybindingText
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ChangeKeybindingTooltip
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ChangingThemeRequiresRestart
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? CheckForUpdates
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Clear
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ClearEffects
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Close
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? CloseGallery
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? CloseWindowPrompt
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ColorPickerTool
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ColorPickerToolTooltip
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ColorRepresentation
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Comment
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? CompressedBitsPixel
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Compression
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ConstrainBackgroundToImage
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Contrast
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ConvertTo
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Copy
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? CopyFile
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? CopyImage
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Copyright
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Created
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? CreationTime
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Credits
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Crop
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? CtrlToZoom
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? DarkTheme
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? DateTaken
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? DeleteFile
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Descending
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? DigitalZoom
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? DirectionalBlur
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? DisableFadeInButtonsOnHover
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? DoubleClick
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Downloading
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? DuplicateFile
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Effects
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? EffectsTooltip
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ExifVersion
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ExpandedGalleryItemSize
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ExposureBias
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ExposureProgram
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ExposureTime
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? File
- {
- get => field.FirstCharToUpper();
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? FileAssociations
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? FileCopyPath
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? FileCut
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? FileExtension
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? FileManagement
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? FileName
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? FileProperties
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? FileSize
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Fill
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? FillSquare
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Filter
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? FirstImage
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Fit
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? FlashEnergy
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? FlashMode
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Flip
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Fnumber
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? FocalLength
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? FocalLength35mm
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Folder
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Forward
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Fstop
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? FullPath
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Fullscreen
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? GallerySettings
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? GalleryThumbnailStretch
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? GeneralSettings
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? GenerateThumbnails
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? GithubRepo
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? GlassTheme
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? GoBackBy100Images
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? GoBackBy10Images
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? GoToImageAtSpecifiedIndex
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Height
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? HideBottomGallery
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? HideBottomToolbar
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? HideUI
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? HighlightColor
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? HighQuality
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Image
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ImageAliasing
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ImageControl
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ImageInfo
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Inches
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? InterfaceConfiguration
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ISOSpeed
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Language
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? LastAccessTime
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? LastImage
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Latitude
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? LensMaker
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? LensModel
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Lighting
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? LightSource
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? LightTheme
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Longitude
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Lossless
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Lossy
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? MaxAperture
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Maximize
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? MeteringMode
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? MiscSettings
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Modified
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
-
- public string? Mouse
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? MouseDrag
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
-
- public string? MouseSideButtons
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? MouseWheel
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? MoveToRecycleBin
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? MoveWindow
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? NavigateBetweenDirectories
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? NavigateFileHistory
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Navigation
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? NegativeColors
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? NewWindow
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? NextFolder
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? NextImage
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? NoConversion
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? None
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? NoResize
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Normal
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? NormalWindow
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? OldMovie
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Open
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? OpenFileDialog
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? OpenFileHistory
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? OpenInSameWindow
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? OpenLastFile
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? OpenWith
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? OptimizeImage
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Orientation
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? OutputFolder
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Pan
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Paste
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? PencilSketch
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Percentage
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? PermanentlyDelete
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? PhotometricInterpretation
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Pin
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Pinned
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Pixels
- {
- get => field.FirstCharToUpper();
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Posterize
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? PrevFolder
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? PrevImage
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Print
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? PrintSizeCm
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? PrintSizeIn
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Quality
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Random
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ReadAbleAspectRatio
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? RecentFiles
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Reload
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? RemoveStarRating
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? RenameFile
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Reset
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ResetButtonText
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ResetZoom
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Resize
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ResizeImage
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Resolution
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ResolutionUnit
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? RestoreDown
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Reverse
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? RotateLeft
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? RotateRight
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Saturation
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Save
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SaveAs
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ScrollAndRotate
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ScrollDirection
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ScrollDisabled
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ScrollDown
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ScrollEnabled
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ScrollToBottom
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ScrollToTop
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ScrollToZoom
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ScrollUp
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SearchSubdirectory
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SecAbbreviation
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SelectAll
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SelectFile
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SelectFileTypesToAssociate
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SelectGalleryThumb
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SetAsLockScreenImage
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SetAsWallpaper
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SetStarRating
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Settings
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Sharpness
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ShowAllSettingsWindow
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ShowBottomGallery
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ShowBottomGalleryWhenUiIsHidden
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ShowBottomToolbar
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ShowConfirmationDialogWhenMovingFileToRecycleBin
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ShowConfirmationDialogWhenPermanentlyDeletingFile
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ShowConfirmationOnEsc
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ShowFadeInButtonsOnHover
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ShowFileSavingDialog
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ShowImageGallery
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ShowInFolder
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ShowUI
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SideBySide
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SideBySideTooltip
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SizeMp
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SizeTooltip
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Slideshow
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Software
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Solarize
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SortFilesBy
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? SourceFolder
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Square
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Start
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? StayCentered
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? StayTopMost
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Stretch
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Subject
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Theme
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Thumbnail
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Tile
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Title
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ToggleFullscreen
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ToggleLooping
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ToggleScroll
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ToggleTaskbarProgress
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Unassociate
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? UnFlip
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Uniform
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? UniformToFill
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Unpin
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? UnselectAll
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? UsingMouse
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? UsingTouchpad
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Version
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ViewLicenseFile
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? WhiteBalance
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Width
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? WidthAndHeight
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Window
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? WindowManagement
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
-
- public string? WindowMargin
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? WindowScaling
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? Zoom
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ZoomIn
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? ZoomOut
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- #endregion strings
- #region Dynamic Translation strings
- public string? IsCtrlToZoom
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? IsFlipped
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? IsLooping
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? IsScrolling
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? IsShowingBottomGallery
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? IsShowingBottomToolbar
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? IsShowingFadingUIButtons
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? IsShowingUI
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
- public string? IsUsingTouchpad
- {
- get;
- set => this.RaiseAndSetIfChanged(ref field, value);
- }
-
- #endregion
- }
|