Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
danielchalmers committed Jul 27, 2024
2 parents 235c4c0 + f309d83 commit 60f1778
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
9 changes: 7 additions & 2 deletions DesktopClock/SettingsWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@
<ColumnDefinition Width="*" />
<ColumnDefinition Width="20" />
</Grid.ColumnDefinitions>
<TextBox Grid.Column="0" Text="{Binding Settings.Format, UpdateSourceTrigger=PropertyChanged}" />
<TextBox Grid.Column="0"
Text="{Binding Settings.Format, UpdateSourceTrigger=PropertyChanged}"
AcceptsReturn="True"
MaxLines="3" />
<ComboBox Grid.Column="1"
DisplayMemberPath="Example"
ItemsSource="{x:Static local:DateFormatExample.DefaultExamples}"
Expand All @@ -49,7 +52,9 @@
</TextBlock>

<TextBlock Text="Countdown Format:" />
<TextBox Text="{Binding Settings.CountdownFormat, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
<TextBox Text="{Binding Settings.CountdownFormat, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
AcceptsReturn="True"
MaxLines="3" />
<TextBlock FontStyle="Italic"
FontSize="10"
Margin="0,0,0,12">
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ A free, open-source digital clock for your desktop that stays visible on screen,
You can fully customize its appearance and behavior, including font, time zone, format, color, or even custom sounds. Additionally, it offers a countdown feature to any specified date.

**Default Clock:**
![Screenshot](https://github.com/danielchalmers/DesktopClock/assets/7112040/6038fa47-3a29-4b74-8f4f-fffeb8af8d0a)
![gif](https://github.com/danielchalmers/DesktopClock/assets/7112040/6038fa47-3a29-4b74-8f4f-fffeb8af8d0a)

**Context Menu:**
![Screenshot](https://user-images.githubusercontent.com/7112040/201500304-fadedaeb-fc50-47b7-9de0-80c45346c35d.png)
![image](https://github.com/user-attachments/assets/2154f1d3-23b0-4161-9a12-02748f5941db)

**Settings - Format**
![image](https://github.com/user-attachments/assets/a7e07b9f-a927-44e7-b406-1ab18226adfd)

## Discover More

Expand Down

0 comments on commit 60f1778

Please sign in to comment.